1

I'm validating AAD-SSO for TestWebApp(ASP.NET MVC) ITfoxtec / ITfoxtec.Identity.Saml2.
I confirmed login -> AAD sign-in -> Redirect to app but app still remains not logging-in.
I assigned "https://localhost:***/Metadata" as Redirect Uri.
I checked the other settings from another post. However that means the app only makes a xml file.

Tell the procedure if there's anyone who succeeded logging-in on app?
Or do I have to build new logic?
e.g. of logic) receive session from AAD and

KenK
  • 13
  • 2

1 Answers1

0

The https://localhost:***/Metadata is the metadata URL. AAD needs to redirect back to the applications AssertionConsumerService endpoint.

You can have AAD reading the metadata or you can configure the AssertionConsumerService endpoint manually in AAD.

Anders Revsgaard
  • 3,636
  • 1
  • 9
  • 25
  • 1
    Thanks for replying! I'll change redirect Url to AssertionConsumerService and change Saml2configuration to correct value. – KenK Jun 10 '21 at 09:17