RapidIdentity Product Guide

Access Token Response

Assuming the Access Token Request is valid, the Authorization Server will return a response like this:

Below is an example 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": "Bearer",
  "expires_in": 7200,
  "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",
  "scope": "basic"
}

Note

Once an Authorization Code has been exchanged for an Access Token, that Authorization Code may not be used again in the future.