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