I have an Asp.Net application that communicate with ADFS(on some other Windows Server) for authentication purpose. Currently, when we navigate to application, it redirects to ADFS SSO authentication page. I followed this blog to implement SSO and have some questions here:
- Can we change implementation so that it may redirect to authentication page only when I press login button ?
- Can we change implementation so that only one page/URL of my application can be accessed without any authentication ?
- What parameters are returned when user is authenticated and redirected back to landing page. How do we get all available parameters ? In this blog returning things are are Value, ValueType, Subject Name, Claim Issuer and Claim Issuer type. Can I get email or username ? so that I may link that person to a client in my application.
If anyone of above is possible, how I can get it ?