Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
What's the difference between OpenID and OAuth?

What is really the difference between OpenID and oAuth? They look just the same to me.

I should clarify, I'm planning to use them in drupal, if that makes any difference. So I guess I'm bound by whatever module implementations are available in drupal.

share|improve this question

marked as duplicate by tanascius, Jürgen Thelen, JMax, sachleen, Graviton Jul 23 '12 at 5:43

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 58 down vote accepted

If you have an account (with some private resources) in a website, you can log in with username/password couple. If an application would like to get some private resources, and if you don't want to give them your username/password, use OAuth.

But if you want to log in into multiple websites with a unique account, use OpenID.

(Some websites use OAuth like OpenID, and OpenID can be use like OAuth if you have some private stuff in your OpenID account)

Edit : It seems to be a recurrent question.

share|improve this answer
5  
Just comprised all the information got. Hope this OpenID & OAuth is useful. – techastute May 21 '12 at 20:20

OpenID is a way to specify one identity for multiple sites so you don't need to register over and over again.

OAuth is a way to allow one application access to one account without giving said application your account login information. You can use them in conjunction.

More info: OAuth-OpenID: You’re Barking Up the Wrong Tree if you Think They’re the Same Thing

share|improve this answer
10  
i like this response more than the one marked as the answer. anybody else? – the0ther Nov 30 '10 at 2:47
2  
17 users voted this answer; I guess it means something. ;-) – kiamlaluno Jan 28 '11 at 10:49
Due to vote count difference Mark got a nice badge for it. That's for sure. :) – Robert Koritnik May 15 '11 at 7:44
@Mark: So it is now. I upvoted accepted one up (and yours as well). Should be a badge now. – Robert Koritnik May 16 '11 at 10:41
1  
The About from the official OAuth site is very helpful. Didn't think it was worthy of another answer, but definitely a nice mention. – mateuscb Jun 12 '12 at 0:42
show 2 more comments

OpenID = using login credentials from an OpenID provider (Google) to login to another application (Stack Overflow)

OAuth = Allowing an application (TwitPic) to act on your behalf to and access information from an application that you use (Twitter).

They can be used in conjunction with each other.

share|improve this answer

OpenID is purely* for multi-site authentication with a single set of credentials.

OAuth is for letting applications access each other securely: data sharing. Think of it as setting a bond of trust between two things, eg allowing your flickr account to post things on your facebook wall or hooking your flickr photos into a third-party printing website.

OAuth isn't just about site-to-site. You can link in desktop applications with no real concept of "identity" to an identity-driven site like Facebook or twitter (eg a twitter client being able to post to your feed without having to store your login details).

There are similarities but OAuth is really all about the service-to-service links.

share|improve this answer

OpenID is about authentication to many sites with one username.
OAuth is about authorization - site A has permission to call site B's api.

Here's another good article/analogy explaining the differences: http://www.dotnetopenauth.net/about/about-oauth/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.