Reputation: 380
I'm moving into testing for my application and so need to move from localhost:8080 to an azure static web app. I am trying to amend my authentication redirect URI in my registered app to the new url but I can't:
Where am I going wrong?
Thanks
Upvotes: 0
Views: 1294
Reputation: 42043
I can just reproduce your issue with the wrong values in requiredResourceAccess
in the Manifest
of the app.
In this case, your redirect URL is valid, make sure you provide the correct values in requiredResourceAccess
.
If you are not sure, you could remove them first -> Save.
"requiredResourceAccess": [
],
Secondly, modify the redirect URL -> Save, then navigate to the API permissions
to add the permissions you want again(requiredResourceAccess
is the mapping of API permissions
).
Upvotes: 1