I am trying to obtain a token through postman using the following tutorial:

I have successfully filled out the credentials then a pop up appears asking for my credentials. This then throws the following error:

Sorry but we're having trouble signing you in

Does anyone know why this error is occurring or how I can fix it?

Thanks

1

3 Answers

According to your error message: no reply address is registered for the application. So, try to set the callback url for your application, usually the url is the reply address.

Go to AAD>App registrations>your app>Authentication

enter image description here

Please note that the reply url configured in the Azure portal needs to be the same as the url you used in postman.

1

Another reason could be that you have n't added a web platform...

[Step 1] Go to AAD>App registrations>your app>Authentication [Step 2] Click on Add a Platform

enter image description here

[Step 3] Select Web

enter image description here

[Step 4] Add Redirect URLs

enter image description here

[Step 5] and click on "Configure" button

I had the same problem. The issue occurs because the redirect url set in Azure for the registered app did not match the one used in my web app. So check if there's a match for both URLs.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy