signInWithOidcToken

abstract fun signInWithOidcToken(token: String, host: String? = null, listener: Connection.ISignInListener? = null)

Initiates a sign-in using the provided OpenID Connect (OIDC) token and an optional host URL.

The OIDC token, generated by a third-party service, is sent to Rainbow for verification.

Parameters

token

The OIDC token used for authentication.

host

Optional custom host URL for authentication. Set to null for default configuration.

listener

Optional ISignInListener to receive callbacks for sign-in events. Set to null if not required.


abstract fun signInWithOidcToken(token: String, listener: Connection.ISignInListener? = null)

Initiates a sign-in using the provided OpenID Connect (OIDC) token.

The OIDC token, generated by a third-party service, is sent to Rainbow for verification.

Parameters

token

The OIDC token used for authentication.

listener

Optional ISignInListener to receive callbacks for sign-in events. Set to null if not required.