Set up Automatic Access Token (Bearer) in Postman (Chaining Requests)

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 […]

Continue reading


Java merge and sort lists of integers without using pre-defined functions

java_logo

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, […]

Continue reading