You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is tutorial how to do it to single tenant app. But how to setup swa config for multitenant and personal account so that I can assign roles from db in the azure function "GetRoles" ? openIdIssuer: "https://login.microsoftonline.com/common" but doesn't work.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
There is tutorial how to do it to single tenant app. But how to setup swa config for multitenant and personal account so that I can assign roles from db in the azure function "GetRoles" ? openIdIssuer: "https://login.microsoftonline.com/common" but doesn't work.
"auth": {
"rolesSource": "/api/GetRoles",
"identityProviders": {
"azureActiveDirectory": {
"userDetailsClaim": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name",
"registration": {
"openIdIssuer": "https://login.microsoftonline.com/<YOUR_AAD_TENANT_ID>",
"clientIdSettingName": "AAD_CLIENT_ID",
"clientSecretSettingName": "AAD_CLIENT_SECRET"
},
"login": {
"loginParameters": [
"resource=https://graph.microsoft.com"
]
}
}
}
},
Beta Was this translation helpful? Give feedback.
All reactions