How to integrate OpenId function in .net

viewing tutorials for integrating OpenId functionality in .net

+4
source share
4 answers

I have the feeling that this Google Code Project will be a great place to start. I just started looking at him a while ago, I did not have much time to look, but it looks promising for those who do not want to spend much time.

+2
source

If you just want to use the OpenID features in .NET, you should check out the open source package dotnetopenid .

As for textbooks, there are many, if you do not mind reading textbooks that are not intended for a particular implementation language. You should check out the official OpenID website for tutorials, as well as the Wikipedia article on OpenId .

Good luck

+1
source

Just answered it somewhere else:

Google found a couple: This is one of them already mentioned. There are several controls there, also for this example

You can also watch a new service called RPX , which is OpenId as SaaS.

+1
source

This document explains the operation of OpenID and shows the whole process with screenshots.

The document describes how to embed Google login in your web application and third-party websites, and let you know how OpenID authentication works.

Here's a step-by-step process of implementing OpenID in your ASP.NET application using the DotNetOpenOAuth library.

0
source

All Articles