I am trying to authenticate my Azure Web App. Follow this doc
In my Azure Portal, I've selected "Authenticate / Authorization" for my Web App.
After I configure my Microsoft Account Authentication Settings with Client ID/Key from the App Registration page, I save the settings page and I'll see an error:
The errors says:
Failed to save Auth Settings for WebApp App: {"Code":"Conflict","Message":"Cannot update the site 'WebApp' because Authentication / Authorization was configured with an invalid issuer URL ''. The URL must be well-formed, absolute, and use the HTTPS scheme.","Target":null,"Details":[{"Message":"Cannot update the site 'WebApp' because Authentication / Authorization was configured with an invalid issuer URL ''. The URL must be well-formed, absolute, and use the HTTPS scheme."},{"Code":"Conflict"},{"ErrorEntity":{"ExtendedCode":"04530","MessageTemplate":"Cannot update the site '{0}' because Authentication / Authorization was configured with an invalid issuer URL '{1}'. The URL must be well-formed, absolute, and use the HTTPS scheme.","Parameters":["WebApp",""],"Code":"Conflict","Message":"Cannot update the site 'WebApp' because Authentication / Authorization was configured with an invalid issuer URL ''. The URL must be well-formed, absolute, and use the HTTPS scheme."}}],"Innererror":null}
I'm not sure what's the "invalid issuer URL" the issue is referring to.
https://<the URL of your App>/.auth/login/microsoftaccount/callbackand the application platform isWeb. - Wayne Yang