Access Token Response

If the access token request is valid and authorized, the authorization server issues an access token and an optional refresh token. The refresh token may be returned only for authorization code flow.

Access Token Response Example

The following is a successful response:

HTTP/1.1 200 OK 

Content-Type: application/json;charset=UTF-8 

Cache-Control: no-store 

Pragma: no-cache 

{ 

"access_token":"2YotnFZFEjr1zCsicMWpAA", 

"token_type":"example", 

"expires_in":3600, 

"refresh_token":"tGzv3JOkF0XG5Qx2TlKWIA", 

"example_parameter":"example_value" 

}