OAuth Client Credential Flow - Refresh Tokens
问题 The Scenario I've recently built an ASP.NET WEB API , and have protected its resources using OAuth Bearer Access Tokens. I've used the Client_Credentials Flow, as it will be accessed by clients as opposed to users. Here's the thing, when a client has successfully provided the client_id and the client_secret they receive a response like the following :- { "access_token": "<Access Token>", "token_type": "bearer", "expires_in": 1199, "refresh_token": "<Refresh Token>" } Refresh Tokens. Not