Automating Access Tokens in Postman (No More Copy-Paste) If you’re testing APIs that use OAuth 2.0 (or any expiring bearer token), you’ve probably done the annoying loop: This guide shows two practical setups: What you’ll achieve By the end, you’ll have: Prerequisites You’ll need: Step 1: Create environment variables In Postman, create an Environment (or […]
Programming
E6 API: Set up Automatic Access Token (Bearer) in Insomnia (Chaining Requests)
Note: if you are on Postman, this page does not apply to you, you can ignore it! 1.) Create a POST request to obtain your access token. In this example, I have used E6’s login endpoint (Refer to E6 login credentials)Notice that the response key is tokenId. This is the access token we will need […]
Java merge and sort lists of integers without using pre-defined functions
In the previous blog post http://www.jijichiz.com/java-merge-sort-integer-arrays-without-using-pre-defined-functions/, we helped George define a function to merge and sort lists of integers. But in this next post, we are now going to help him merge and sort lists of integers. Same problem, he’s got two unordered lists of integers such as below: [2, 3, 1] [2, 5, 5, […]
Java merge and sort integer arrays without using pre-defined functions
George has a problem. He’s got two unordered integer arrays such as below: {2, 3, 1} {2, 5, 5, 8, 9, 13} Now, he wants to merge these two and sort them in ascending order. He is not allowed to use any sort functions to solve this problem. The result should display: [1, 2, 2, […]
How to install Eclipse Part 1
Hello everybody, today I will teach you how to install Eclipse, at the time of writing the latest version of Eclipse is Kepler. First we have to download Eclipse. Go to Eclipse site here: http://www.eclipse.org/downloads/ Under Package Solutions, choose Eclipse IDE for Java Developers, 151 MB. Note: If your machine is 32 bit choose 32 bit installer. Stay […]