Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Live Search
spaceKeyDOC
placeholderSearch

...

titleTABLE OF CONTENTS

...

English | Deutsch


An Azure AD Federation should be setup as OpenID Connect federation. SAML might be possible but is not the preferred configuration.

Azure AD Configuration:

Step 1:


  1. Create an App registration in Azure AD (tab App Registrations)

...

  1. Configure Supported Account types. The value should be “Only Account from this AD” (single tenant).

    1. Azure AD

...

Step 3:

  1. Add a redirect URI to the App Registration. The redirect URI will be the following

...

...

...

  1. Add permission for “UserRead” to that App Registration.

    1. The value will be https://graph.microsoft.com/User.Read

...

  1. 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.

  2. Create a secret for that App Registration and remember it.

  3. Remember the client ID of that App Registration.

Code Block
 "optionalClaims": {
    "idToken": [
        {
            "name": "family_name",
            "essential": true
        },
        {
            "name": "given_name",
            "essential": true
        }
    ]
},
"accessToken": [],
"saml2Token": []

...

Step 6:

Create a secret for that App Registration and remember it

Step 7:

...