interface GetAuthorizationUrlOptions {
    callbackFactory?: FRCallbackFactory;
    clientId: string;
    login?: "redirect" | "embedded";
    middleware?: LegacyRequestMiddleware[];
    oauthThreshold?: number;
    platformHeader?: boolean;
    prefix?: string;
    prompt?: "none" | "login" | "consent";
    query?: Record<string, string>;
    realmPath?: string;
    redirectUri: string;
    responseType: ResponseType;
    scope: string;
    serverConfig?: ServerConfig;
    state?: string;
    tokenStore?: CustomStorageObject | "sessionStorage" | "localStorage";
    tree?: string;
    type?: string;
    verifier?: string;
}

Hierarchy (View Summary)

Properties

callbackFactory?: FRCallbackFactory
clientId: string

These three properties clientid, scope and redirectUri are required when using this type, which are not required when defining Config.

login?: "redirect" | "embedded"
oauthThreshold?: number
platformHeader?: boolean
prefix?: string
prompt?: "none" | "login" | "consent"
query?: Record<string, string>
realmPath?: string
redirectUri: string
responseType: ResponseType
scope: string
serverConfig?: ServerConfig
state?: string
tokenStore?: CustomStorageObject | "sessionStorage" | "localStorage"
tree?: string
type?: string
verifier?: string