mstrom
mstrom

Reputation: 1743

How to get the request from Postman's Get Access Token

I am successfully getting Postman's Get Access Token feature to work. I need to see the request it's making, though, so I can make the call in code.

Any ideas how to do that?

Upvotes: 13

Views: 4391

Answers (3)

prav
prav

Reputation: 61

Instead of using "Get Access Token", you can build new POST request to generate TOKEN and make use of POSTMAN code snippet feature to generate the code.enter image description here

Upvotes: 0

jacobytes
jacobytes

Reputation: 3271

You can view a token request by opening the postman console.

View > Show Postman console (ALT + CTRL + C)

The postman console holds all your request logs, to make it easier you can clear all the request using the clear button in the top right corner. When you make the token request for your call, it will show up here.

enter image description here

Upvotes: 7

channel
channel

Reputation: 226

There is a Code button on the right hand side of the browser in orange.

enter image description here

When you click that you should get the code snippet of the request:

enter image description here

Upvotes: -1

Related Questions