Refreshing an Access Token
Access Token Request
http://api.chorke.org/auth/oauth/token
Request Headers;postman authorization header
;
;
authorization:Basic Y2xpZW50X2lkOmNsaWVudF9wYXNz
Content-Type:application/x-www-form-urlencoded
Request Body;postman form data
username:chorkeinc
password:pa$$w0rd
grant_type:password
client_id:chorke_inc
|
Response Body{ "refresh_token" : "4c54d888-1143-4cf6-8ea4-7cbf1acfb2c8",
"access_token" : "dcddeae6-ee4e-4423-820f-4d040711e0ff",
"scope" : "read write",
"token_type" : "bearer",
"expires_in" : 10720 }
|
Refreshing an Access Token
http://api.chorke.org/auth/oauth/token
Request Headers;postman authorization header
;
;
authorization:Basic Y2xpZW50X2lkOmNsaWVudF9wYXNz
Content-Type:application/x-www-form-urlencoded
Request Body;postman form data
grant_type:refresh_token
refresh_token:4c54d888-1143-4cf6-8ea4-7cbf1acfb2c8
|
Response Body{ "refresh_token" : "4c54d888-1143-4cf6-8ea4-7cbf1acfb2c8",
"access_token" : "8fd6fd10-0f54-4b71-93d7-e572f71cb42b",
"scope" : "read write",
"token_type" : "bearer",
"expires_in" : 10799 }
|
Accessing Protected Resources
http://api.chorke.org/rest/api/v1.0/countries/1
Request Headers;
;
;postman authorization header
Authorization:bearer f8317bea-5aba-44ea-b942-b8cd531e14fc
|
Response Body[{ "countryCode" : 1,
"isoAlpha2Code" :"bd",
"isoAlpha3Code" :"bgd",
"countryName" :"Bangladesh" }]
|