Azure AD Federation
Ā
English | Deutsch
An Azure AD Federation should be setup as OpenID Connect federation. SAML might be possible but is not the preferred configuration.
Create an App registration in Azure AD (tab App Registrations)
Configure Supported Account types. The value should be āOnly Account from this ADā (single tenant).
Add a redirect URI to the App Registration. The redirect URI will be the following: https://access.questback.com/oauth2/v1/authorize/callback
For Production: https://access.questback.com/oauth2/v1/authorize/callback
Add permission for āUserReadā to that App Registration.
The value will be https://graph.microsoft.com/User.Read
Add optional claims to the manifest of the created App Registration in Azure AD. The family_name and the given_name have to be sent.
Create a secret for that App Registration and remember it.
Remember the client ID of that App Registration.
"optionalClaims": {
"idToken": [
{
"name": "family_name",
"essential": true
},
{
"name": "given_name",
"essential": true
}
]
},
"accessToken": [],
"saml2Token": []
Ā© 2024 Tivian XI GmbH