Type alias InitializeOAuthOptions

InitializeOAuthOptions: {
    usePooling?: boolean;
    redirectTo?: string;
    scopes?: string;
    queryParams?: {
        [key: string]: string;
    };
    skipBrowserRedirect?: boolean;
}

Type declaration

  • Optional usePooling?: boolean
  • Optional redirectTo?: string

    A URL to send the user to after they are confirmed.

  • Optional scopes?: string

    A space-separated list of scopes granted to the OAuth application.

  • Optional queryParams?: {
        [key: string]: string;
    }

    An object of query params

    • [key: string]: string
  • Optional skipBrowserRedirect?: boolean

    If set to true does not immediately redirect the current browser context to visit the OAuth authorization page for the provider.

Generated using TypeDoc