Successful Response and Parameters

A successful response can be as follows:

{ 
  "access_token":"yJd8Hu2VlYkwdx43_U3g7BmQYv9pEaDJtnI2W_...", 
  "refresh_token":"_WPSJB-Dm3mQVx3LcK_w_...", 
  "id_token":"eyJraWQiOiJqd3QiLCJhbGciOiJSUzUxMiJ9.eyJzdWzFiMDk5MC1lNWRhLTQ..." 
} 
content-type : "application/json;  

It contains the following parameters:

Parameter Name Description
access_token The access token used by the client to authenticate in user info requests.
refresh_token The token used to obtain a new access token without re-authenticating the user, extending the session's validity.
scope A space-separated list of scopes. It must include the openid scope.
id_token A JSON Web Token (JWT) contains user identity information, including claims about the authenticated user. It is issued by the authorization server and used by the client to verify the user’s authentication.