Hi All, my Project is developed in Asp.net (webform). By using OWIN i need to implement below 2 requirement
1. I want to integrate IDP (Azure AD) User Authentication on that project like when the user try to visit our website then first the user will be redirected to IDP login page (Azure AD). There the user will enter his credential and then after successful authentication the user will be redirected to our project home page.
2. Once the user redirected then in our code we should able to capture the access_token and that access_token we need to pass in the header while calling webservice for loading other functionalities.
For now I am able to achieve 1st requirement but facing issue in implementing 2nd requirement i.e capturing the Access_token on my project after successful authentication in IDP.
So can anybody please help me on this by providing a working example.