Red Swan
Red Swan

Reputation: 15545

how to implement single sign on using DotNetOpenAuth?

Hi I am having the asp.net MVC site. I want to implement Single sign on on my site using DotNetOpenAuth. I have downloaded its library from here But could not understand how to start implementation. I tried Jenrain also, infact I was able to logging in by jenrain , but its C# class not providing me the logged in user information to start the session and all...So i came across at dotnetopenauth but not getting right direction.

Upvotes: 2

Views: 1453

Answers (1)

David Glenn
David Glenn

Reputation: 24522

One way is to implement OpenID using the DotNetOpenAuth library and create a one-to-many relationship between your User table and a newly created User_OpenID table.

Scot Hanselman has a good basic article or try a more in depth overview

Upvotes: 1

Related Questions