azure-activedirectory-powershell
azure-activedirectory-powershell copied to clipboard
Specifying type for ReplyURLs in Set-AzureADApplication
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