Obtaining Access Token
When the client sends a request which carries a valid Consumer Key and Consumer Secret to the Token End Point in order to get an access token, the Token End Point verifies the credentials and returns the access token back to the client.
Accessing protected resources using Access Token
After receiving the Access Token using one of the above methods, it is sent along with the request as a query parameter (since Query is set in VerifyAccessTokenPolicy) to access the protected API. The Request URL will be in the following format:
<url from the documentation>?access_token=<value generated in postman>
example:
http://192.168.2.46:1860/test/1.0?access_token=311d61b903747339db1a2207cb50457c
Obtaining Access Token
To get Access Token, any one of the ways may be used: