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

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.

Generated using TypeDoc