Open betterapp opened 8 months ago
Here are the steps to set up Azure AD SSO login (copied from Readme - maybe I should publish this...):
To use Azure AD as authentication provider, you have to create a new Azure AD app:
+ New registration
to create a new app.Name
field.Redirect URI
to https://your-pimcore.com/sso/redirect - please replace the domain name to your real one. Register
Application (client) ID
from the app configuration page and paste it in the Pimcore SSO configuration's field Client ID
.Certificates & secrets
.+ New client secret
. Provide a description and an expiration length that follows your security organization’s guidelines. Then click Add.Client Secret
.Discovery URL
enter https://login.microsoftonline.com/[TENANT]/.well-known/openid-configuration - please replace [TENANT]
with your tenant id.Scopes
use openid
, profile
, email
Pimcore field | Azure AD field |
---|---|
Username / login | unique_name |
Given name | given_name |
Family name | family_name |
unique_name | |
Groups / Roles | groups |
So to answer your question: The callback URL in the Azure app has to be https://demo.pimcore.blackbit.de/sso/redirect
I need to test SSO plugin on Your server https://demo.pimcore.blackbit.de (before we buy it) for SSO Azure Login. Can You tell me what Replay address should we set on Azure side for OpenID connection ?
We can use only domain (https://demo.pimcore.blackbit.de) or with some additional path ?
@BlackbitDevs