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
I'm trying to register an Azure application using the Powershell modules, however we are using the MSAL 2.0 Implicit flow which I belive means my reply URLs need to be type "SPA".
How do you specify type? Set-AzureADApplication takes a list of string only.
I'm trying to register an Azure application using the Powershell modules, however we are using the MSAL 2.0 Implicit flow which I belive means my reply URLs need to be type "SPA".
How do you specify type? Set-AzureADApplication takes a list of string only.
My manifest currently looks like:
"replyUrlsWithType": [ { "url": "http://localhost:8080/*", "type": "Web" } ]
But I believe I need:
"replyUrlsWithType": [ { "url": "http://localhost:8080/*", "type": "SPA" } ]
Thanks
The text was updated successfully, but these errors were encountered: