0

I have a web application built using angular2 and I need to provide single sign on feature to my application. We don't want the user to key in login credentials, application should use user's windows credentials while trying to access it. I have no idea on how to get windows credentials using javascript/typescript from client.

Any ideas on implementing this functionality is much appreciated.

Mohan
  • 233
  • 1
  • 8
  • 21

1 Answers1

0

What I would suggest is to get the User client SSL for authenticating. That is the best way to do that. You need to send SSL to user(In Enterprise users normally all laptop\desktop have user certificates) and use it as SSO.

You may also ask user to install certificate if not available.

Check in Javascript if a SSL Certificate is valid

Community
  • 1
  • 1