If the authentication process was successful, an access token with some additional data is returned. The same is true, if the access token was renewed. The response is structured as a symbolic expression list, with the following elements:

  1. The type of the token, always set to "Bearer", as described in RFC 6750

  2. The token itself, which is technically the string representation of a symbolic expression containing relevant data, plus a check sum.

    The symbolic expression is encoded via “base64”. Based on this encoding, a checksum is calculated, also encoded via “base64”. Both encoded values are concatenated, with a period (".") as a delimiter.