Interface GetRequestIdRequest

interface GetRequestIdRequest {
    client_id?: string;
    nonce?: string;
    redirect_uri?: string;
    response_mode?: string;
    response_type?: string;
    scope?: string;
    ui_locales?: string;
}

Properties

client_id?: string

Unique identifier of client app, can be found in app setting under admin ui

nonce?: string

String value used to associate a client session with an id token, and to mitigate replay attacks

redirect_uri?: string

Specify the url where the user needs to be redirected after successful login

response_mode?: string

Response mode defines how the redirect_uri will receive the token or code e.g. as query or fragment

response_type?: string

Response type expected for the process e.g. token or code

scope?: string

Permissions that are requested for this requestId

ui_locales?: string

Preferred locale of the user