Authenticator

fun Authenticator(authenticatorState: AuthenticatorState, modifier: Modifier = Modifier, onPendingOAuthUserSignIn: (OAuthUserSignIn) -> Unit? = null)

Displays appropriate Authentication UI when an authentication challenge is issued.

For example, when an ArcGISAuthenticationChallenge is issued and the AuthenticatorState has a corresponding OAuthUserConfiguration, then a Custom Tab will be launched to complete the OAuth sign in.

All Authentication components will be displayed in full screen. See DialogAuthenticator for alternate behavior.

Since

200.2.0

Parameters

authenticatorState

the object that holds the state to handle authentication challenges.

modifier

the Modifier to apply to this Authenticator.

onPendingOAuthUserSignIn

if not null, this will be called when an OAuth challenge is pending and the browser should be launched. Use this if you wish to handle OAuth challenges from your own activity rather than using the OAuthUserSignInActivity.

See also