Home > Software design >  Sync Token in Postman
Sync Token in Postman

Time:10-06

A fresher to postman, currently working on API project where I need to delivery to the API and Token the client to integrate with them system, good is I successfully configure the Authorization as OAuth Type as Password Credentials and receiving perfect response as 200.

The issue/confusion is Token is getting expire every hour, I need to Get new Access Token every time.

So, the question is, is it anyway I can overcome this issue?

  • that no need to get new/refresh token.
  • can provide the one fix token to client.

CodePudding user response:

You can do it like here. You can get the token in the pre-request field of the collection or request.

https://stackoverflow.com/a/73911458/10126763

EDIT We can adapt it like this:

Take this and paste it in the "pre-request" field of the collection or the request you will use directly. Create an "environment" value named "accessToken". When each request is run, this method will run first and send the token value to the value in the environment.

// Set refresh and access tokens
const loginRequest = {
   url:  "exampleurl.com/etc/etc", //YOUR URL
    method: 'GET',
    header: {
        'content-type': 'application/json',
        'Accept': "*/*"
    }  //Since you will be using GET, I deleted the body. If you are sending value you can get the body field from the other example in the link.
};

pm.sendRequest(loginRequest, function (err, res) {
    pm.environment.set("accessToken", res.json().accessToken); //The token returned in the response and the environment value to which the value will be sent
});
  • Related