i want like we generate access token using client_credentials and pass this access token to api's authorization but i don't want to pass again and again access token?
Solved! Go to Solution.
If you are securing one api, then you need to send the access token to get validated before the request reaches the resource server.
One thing I would specify is client credentials grant type is used for very trusted applications. So, in that case you can store the access token in the app until it expires and the same will be produced by the app for subsequent requests.