Hi All,
Im using v2.2.0 Umbraco.Community.AzureSSO in my umbraco v13.5.2 project. I have set it up like below:
"AzureSSO": {
"Credentials": {
"Instance": "https://login.microsoftonline.com/",
"Domain": "https://localhost:44379/",
"TenantId": "<tenantId>",
"ClientId": "<clientId>",
"CallbackPath": "/umbraco-microsoft-signin/",
"SignedOutCallbackPath ": "/umbraco-microsoft-signout/",
"ClientSecret": "<clientSecret>"
},
"DisplayName": "Azure AD",
"DenyLocalLogin": true,
"Icon": "icon-microsoft-fill",
"ButtonStyle": "btn-microsoft"
}
Using the above settings, I get the Azure AD login button. On click of the button, I'm being redirected to
https://localhost:44379/umbraco#/undefined after entering the Microsoft credentials and I can't see any content in the backoffice. Am I missing something? Please help