Versions Compared

Key

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

Postman is sending cookies so session got 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 disabling to disable cookies, or set this config:configuration in Postman:

  1. Go to Manage Cookies

...

Click whilelist domains.
2. Click Whilelist Domains

...

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

4. And in the POST oauth/token request, please 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-

...

training.flexiti.fi

...

- without http:// or https://)