Reputation: 53
I have an existing web application that have a custom made authentication and login module. I would like to add login for some users via ADFS openid-connect but all examples I see is based on OWIN which I cannot use. My plan is to let some external users login via Azure AD and once they are authenticated in Azure I will create temporary users in the web application.
Can I use the ADAL framework or do I have to custom code all communication with Azure AD through the use of for example .Net HTTPClient ?
Thanks.
Upvotes: 2
Views: 856
Reputation: 53
We implemented a solution with redirect to Azure AD login page and then a return URL back to the site and check for validity of the token.
Upvotes: 1