This API is used for exchanging access token with one-time token.
code will be returned to the client, which will then combine it with the client_secret to obtain an access token.
id_token and access_tokenid_token is a JWT token that contains basic information about the user, including:
access_token is a JWT token used for accessing a particular resource via the API.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.