0% found this document useful (0 votes)
3 views6 pages

Oauth Testing Password Flow in Postman

The document outlines the process for testing OAuth Password Flow using Postman. It details the steps for sending a POST request with specific credentials in the x-www-form-urlencoded body to obtain an access token. Additionally, it describes how to configure OAuth 2.0 in Postman to retrieve the access token for API connection.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views6 pages

Oauth Testing Password Flow in Postman

The document outlines the process for testing OAuth Password Flow using Postman. It details the steps for sending a POST request with specific credentials in the x-www-form-urlencoded body to obtain an access token. Additionally, it describes how to configure OAuth 2.0 in Postman to retrieve the access token for API connection.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

OAUTH TESTING IN POSTMAN

Oauth Password Flow:

●​ API Secret
●​ Username
●​ Password
●​ Scopes
POSTMAN TESTING PASSWORD FLOW:
Through x-www-form-urlencoded in Body

STEP 1:Copy the Token URL and past it in Postman POST method.

STEP 2: Give the follow credentials in the x-www-form-urlencoded.


​ ​ grant_type:password
client_id:39d29f775b0e0d5bf31a5cd830a0770f
client_secret:e526c1e7b842933f43c9367fb2ad533f
scope:sample_scope_1
username:yash
Password:sarasu10

STEP 3: After hiding SEND you will get the access_token in


response
POSTMAN TESTING PASSWORD FLOW:
Through Authorization

STEP 1 : Select the Type as Oauth 2.0

STEP 2 : In Configure New Token


STEP 3: Click on Get New Access Token

STEP 4: You will get the Access Token,now past this token in API
Connect

You might also like