CIBA by poll
The OAuth Client Initiated Backchannel Authentication (CIBA) grant by poll process takes place between the client, user, authentication device, PingFederate, and resource server (RS).
After receiving an authentication request acknowledgment, the client starts polling the OpenID Provider (OP)'s token endpoint on a regular interval to obtain the authorization results. When the OP receives the authorization granted by the user through the authentication device, it returns an access token to the client.
Processing steps
-
The client sends an authentication request to PingFederate at its client-initiated backchannel authentication endpoint. The client must include in its authentication request the desired scope of permissions and one identity hint for PingFederate to identify the user. When providing an identity hint, the client has three options:
-
login_hint
-
login_hint_token
-
id_token_hint
The client can include a user code using the
user_code
parameter in the authentication request, transmit all request parameters of the authentication request in a signed request object, or do both. -
-
PingFederate validates the authentication request and identifies the user based on the hint provided by the client.
-
PingFederate returns an authentication request acknowledgement to the client. The response contains the identifier,
auth_req_i
, that PingFederate assigns to the authentication request. -
The client starts polling PingFederate at its token endpoint to check whether the user has completed the authorization process.
The client must include in its token request the CIBA grant type,
urn:openid:params:grant-type:ciba
, and the correspondingauth_req_id
value.For each token request it receives, PingFederate returns a token response. The payload varies depending on the authorization status.
-
PingFederate invokes a CIBA authenticator based on the applicable CIBA request policy to reach out to the user with the information (for example, the requested scopes) that the user needs to obtain authorization.
-
The authentication device presents the information and works with the user to obtain authorization.
-
The user reviews the information presented by the authentication device and then approves or denies the scopes requested by the client.
-
The authentication device sends the authorization result back to PingFederate.
-
The client continues polling PingFederate for an authorization result.
-
PingFederate returns an access token in a token response to the client.
If the user denies the requested scopes, PingFederate provides the client with a relevant error message in the token response.
-
The client provides the access token to the RS to access protected resources.
-
The RS validates the access token.
-
The RS provides the requested data to the client.