Auth Complete Redirect
identity/auth_complete_redirect
These entries can be used to override the default post authentication URL which clients will be redirected to once they have successfully authenticated.
Properties
Name | Type | Constraints | Description |
---|---|---|---|
url | string | The URI which a client will be redirected to upon successful authentication. This URI can be absolute or server relative. | |
parameters | Array of parameters |
identity/auth_complete_redirect/parameters[]
Additional parameters which can be included in the redirect URI as query string arguments.
Properties
Name | Type | Constraints | Description |
---|---|---|---|
source | string | Values: macro , header , credential | The source the value should be taken from. |
value | string | The name of the macro, HTTP header or credential attribute the value will be taken from. When using the macro type source, valid values are:- USERNAME - URL - HOSTNAME - PROTOCOL | |
name | string | The name which should be used to name the parameter inserted into the redirect URL. If this value is not specified, the parameter will be named accordingly: - For macro sources, the name will be used verbatim.- For header sources, the name will be of the format HTTPHDR_<name> - For credential sources, the name will be of the format CREDATTR_<name> |
Example
identity:
auth_complete_redirect:
url: /landing
parameters:
- source: macro
value: HOSTNAME
name: host
- source: credential
value: AZN_CRED_NETWORK_ADDRESS_STR
name: origin
- source: header
value: X-IBM-Proxy
name: proxy
Updated almost 2 years ago