JTInfinite
JTInfinite

Reputation: 380

Azure B2C App Registration - why can't I change my redirect URI?

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:

enter image description here

Where am I going wrong?

Thanks

Upvotes: 0

Views: 1294

Answers (1)

Joy Wang
Joy Wang

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.

enter image description here

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

Related Questions