Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

When working with Postman and our APIs, it’s important to know that Postman sends it’s own cookies which can lead to sessions getting lost.

A workaround to avoid this is to disable cookies, or set this configuration in Postman:

  1. Go to Manage Cookies

Image RemovedImage Added


2. Click Whilelist Domains

Image RemovedImage Added

3. Add domain. This can be Localhost, staging, etc (depending the environment you want to test).

4. And in the POST oauth/token request, add the following code…

Code Block
pm.cookies.jar().unset(pm.environment.get("pos_url"),'connect.sid');

… as pictured below.

Info

This is done to get the postman working on different environments. You will need to whitelist all the different environments, you will be using in Postman (for example, “posapi-mi.flexiti.fi” - without http:// or https://)