Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Live ID in ASP.NET MVC

does anyone know is there a way to implement Windows Live ID authentication into your ASP.NET MVC site. There is some info about OpenID implementations and it uses some libraries. So is there a way to implement Live ID or it is not yet supported.

Thank you

like image 240
gljivar Avatar asked Oct 15 '22 17:10

gljivar


2 Answers

The same way you would with Memberships: http://www.eggheadcafe.com/tutorials/aspnet/48857836-0c72-4efb-9d29-fbcb8e17ef3a/integrate-windows-live-id.aspx

like image 136
Filip Ekberg Avatar answered Oct 20 '22 17:10

Filip Ekberg


Actually this is a valid business case, and I've gotten it to work with asp.net mvc. I used the sdk sample code a posted by Filip and created a controller that handled auth response. The only issue I had was during the windows live app verification process. I couldn't get the verification process to work with the mvc site up. I had to do the verification before I upload site. See: link text

like image 44
Tyson Swing Avatar answered Oct 20 '22 18:10

Tyson Swing