RapidIdentity Product Guide

Token Request

Issue a POST to /idp/profile/oidc/token with the following parameters.

Table 291. POST Parameters

Parameter

Type

Description

grant_type

String required

"authorization_code"

code

String required

The value of the "code" parameter from the previous response.

redirect_uri

String required

The registered callback URL Must match exactly the value used in the previous request.

client_id

String optional

The OAuth 2.0 Client Identifier. This is required if HTTP Basic Authentication is not used.

client_secret

String optional

The OAuth 2.0 Client Identifier. This is required if HTTP Basic Authentication is not used.



As shown in the parameter table, HTTP Basic Authentication may be used instead of providing client_id and client_secret as request parameters.

In that case, the Client ID should be used as the username and the Client Secret should be used as the password.

If possible, use of HTTP Basic Authentication is preferred.