react-native-auth0
    Preparing search index...

    Interface AuthorizeUrlOptions

    Options for building a URL for /authorize

    interface AuthorizeUrlOptions {
        redirectUri: object;
        responseType: string;
        state: object;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Custom parameters to send to /authorize

    Index

    Properties

    redirectUri: object

    Where the authorization server will redirect back after success or failure.

    responseType: string

    The response_type value

    state: object

    Random string to prevent CSRF attacks.