Reputation: 1743
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
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.
Upvotes: 0
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.
Upvotes: 7
Reputation: 226
There is a Code
button on the right hand side of the browser in orange.
When you click that you should get the code snippet of the request:
Upvotes: -1