MonoCloud Authentication SDK
    Preparing search index...

    A subset of authorization parameters used on client side functions

    interface SignInProps {
        acrValues?: string[];
        authenticatorHint?: Authenticators;
        children: ReactNode;
        display?: DisplayOptions;
        loginHint?: string;
        maxAge?: number;
        prompt?: Prompt;
        resource?: string;
        returnUrl?: string;
        scopes?: string;
        uiLocales?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    acrValues?: string[]

    An array of authentication context class references (ACRs).

    authenticatorHint?: Authenticators

    A hint to the authorization server about the desired authenticator the client wishes to authenticate the user with

    children: ReactNode
    display?: DisplayOptions

    The desired user interface mode

    loginHint?: string

    A hint to the authorization server about the user's identifier

    maxAge?: number

    Maximum allowed time in seconds since the last End-User authentication.

    prompt?: Prompt

    The desired authentication behaviour.

    • none: User is not prompted to sign in.
    • login: Prompt the user to log in even if the user is already authenticated.
    • consent: Prompt the user for consent.
    • select_account: Prompt the user to sign in.
    • create: Prompt the user to sign up.
    resource?: string

    Space-separated list of resources the access token should be scoped to

    returnUrl?: string

    URL to redirect to after a successful sign-in.

    scopes?: string

    Space-separated list of scopes requested from the authorization server

    uiLocales?: string

    User's preferred languages and scripts for the user interface