COPILOT User
COPILOT User

Reputation: 301

How do I implement OpenID in my web application?

Does Stackoverflow create a new OpenID when a user registers with an email address (i.e. does not provide an existing OpenID)? How do you do that? Do you have code examples in C#? Java? Python?

Upvotes: 24

Views: 10399

Answers (4)

Mark Biek
Mark Biek

Reputation: 150919

The Plaxo OpenID recipe (from the OpenID site) was one of the better howtos I've seen.

Upvotes: 7

Eric Haskins
Eric Haskins

Reputation: 8605

Scott Hanselman posted a while back about setting up OpenID in .net.

Upvotes: 1

UnkwnTech
UnkwnTech

Reputation: 90961

I think you are mis-understanding OpenID, the process of registering and OpenID is the responsibility of the user, you'll note that there is no place to signup here without an OpenID.

Upvotes: -1

Thomas Owens
Thomas Owens

Reputation: 116197

You can find OpenID implementations here. If you just want more information, I would check out the OpenID site.

Upvotes: 13

Related Questions