Reputation: 642
ACS50001: Relying party with identifier
https://localhost:44304/
was not found when I try to sign-in with my web site against WAAD.
What might I be doing wrong here? I've tried this over and over, following the instructions carefully:
https://localhost:44304
https://localhost:44304/
Copy metadata fields from WAAD portal into wizard, and click OK:
STS metadata document path: https://login.windows.net/06c6c283-5c4b-40c5-ac5c-21d2ff4364a3/FederationMetadata/2007-06/FederationMetadata.xml
App ID URI:
https://localhost:44304/
When I launch app (first time, or after a reboot), I get the expected sign-in dialog. After signing in as one of my users, I get the ACS50001 error described above. If I try subsequently to again run the app, I get the error ACS50001 immediately (no sign-in dialog).
Any advice would be very much appreciated!
Upvotes: 3
Views: 3039
Reputation: 1435
i had similar problem.
and i solved it by giving permisssion to Application.
Follow below steps:
Here i am attaching below screenshot , which shows where i have set my permission
Upvotes: 3
Reputation: 417
I had a similar problem and I solved it by making sure my Relying party and app URI were an exact match. I had a trailing slash on the relying party (or audienceUri) that I needed to remove.
Upvotes: 6
Reputation: 561
May be you need to specific a view to the URL
https://localhost:44304/callback
Upvotes: 0