A cloud-based identity and access management service for securing user authentication and resource access
Hello Samuel,
Thank you for posting your questions in the Microsoft Q&A Forum.
The error AADSTS50011: The reply URL specified in the request does not match the reply URLs configured for the application occurs when the redirect URI your application sends during sign-in does not exactly match any of the URIs registered in Microsoft Entra ID.
Steps to Resolve:
- Check the Redirect URI in Your App Verify the
redirect_uriparameter your app is using during authentication (e.g.,https://yourapp.com/auth/callback). - Update App Registration in Entra ID
- Sign in to https://entra.microsoft.com.
- Navigate to App registrations → Select your app → Authentication.
- Under Redirect URIs, add the exact URI your app uses. Ensure:
- It matches exactly (including protocol
https://, path, and case sensitivity). - HTTPS is used (except for
http://localhostduring development).
- Add All Required URIs If you have multiple environments (Dev, Test, Prod), add each redirect URI.
- Save Changes and Restart After updating, save the configuration and restart your app or clear browser cache.
For detailed steps please refer to the document:
Kindly let us know if the above comment helps or you need further assistance on this issue.
Please "upvote" if the information helped you. This will help us and others in the community as well.