16

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

https://learn.microsoft.com/en-us/azure/healthcare-apis/access-fhir-postman-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

Funky
  • 12,890
  • 35
  • 106
  • 161

4 Answers4

17

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.

Carl Zhao
  • 8,543
  • 2
  • 11
  • 19
10

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

Madhu Tomy
  • 662
  • 11
  • 25
0

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.

faye.babacar78
  • 774
  • 7
  • 12
0

I had this issue when trying to set up Active Directory login at work. I confirmed with my IT department many times that the redirectURI was configured correctly in Azure App Services

Turns out we needed to add login.microsoft.com to the allowed CORS list After allowing that site the application worked as expected

LkwdDev
  • 23
  • 3
  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Oct 31 '22 at 13:58