XmBindIdResponse

interface XmBindIdResponse

Represents that result of an authentication request submitted to BindID.

Members

public abstract String getCode()

Authorization code returned by BindID.

This can be used to obtain the resulting ID Token and Access Token by invoking the token endpoint on the BindID OAuth API. This value is typically sent to application backend where it is exchanged for the sensitive Access Token.

public abstract String getState()

Optional.

The state value returned from the BindID process. This must match the state passed in the BindID invocation request, if one was passed.

public abstract String getCodeVerifier()

Code verifier to use for a PKCE token exchange, provided when the “usePkce” request parameter is set to True.

public abstract String getRedirectUri()

Redirect URI to use for a PKCE token exchange, which corresponds to the URI passed in the request.