/Redirect client for authentication
Redirect client for authentication
For client redirection, oauth2.0 oauth/authorize endpoint is requested. this is interaction with the resource owner and get the authorization to access the protected resource.
Query Parameters
Parameter | Type | Description |
---|---|---|
client_id * | string | The client identifier issued to the client during the registration process |
scope * | string | tRequired if initiating authorization. The scope of the access request, must therefore contain the openid scope value. |
claims | object | Required if initiating authorization. Object of the claims that client want to be shared |
login_hint | string | Required if initiating authorization. A hint to the OpenID Provider regarding the end-user for whom authentication is being requested. The value may contain an Personal number or Phone number, which identifies the end-user. During request, LoginHint must contain only one parameter, 'personal_number' or 'msisdn' |
id_token_hint | string | Required if authenticating authorization. An ID Token previously issued to the Client by the OpenID Provider being passed back as a hint to identify the end-user for whom authentication is being requested. |
ui_locales | string | Specifies the preferred languages and scripts for the user interface. The value must be choosen from openid configuration (ui_locales_supported) |
user_code | string | Required if authenticating authorization. A secret code, such as a password, that is known only to the user but verifiable by the TBC |
Response Parameters
Parameter | Type | Description |
---|---|---|
auth_req_id * | string | This is a unique identifier to identify the authentication request made by the Client. |
expires_in * | integer | A JSON number with a positive integer value indicating the expiration time of the "auth_req_id" in seconds since the authentication request was received. |
interval | integer | A JSON number with a positive integer value indicating the minimum amount of time in seconds that the Client MUST wait between polling requests to the token endpoint. |
Updated 7 months ago