vote up 16 vote down star
7

I'm really trying to understand the difference between OpenID and OAuth? Maybe there two totally separate things and I'm just totally confused. Could someone explain it to me please?

Thanks!

flag

71% accept rate
This does not appear programming-related at all, and probably belongs on meta.stackoverflow.com. – gnovice Jul 6 at 14:14
13  
It's totally programming-related. I'm a programmer and trying to get a better understanding of this topic. – Micah Jul 6 at 14:17
5  
Nit-picky things like this is what drives me crazy about stackoverflow. Too many zealots. – Micah Jul 6 at 14:25
7  
It's programming related. Someone writing an application needs to know the difference. – Thomas Owens Jul 6 at 20:18
1  
This doesn't belong on meta, as it's not meta discussion regarding the Stack Overflow family of web sites. It's a perfectly valid topic for software developers. – Rob Aug 27 at 23:41
show 1 more comment

5 Answers

vote up 18 vote down check

OpenID is about authentication (ie. proving who you are), OAuth is about authorisation (ie. to grant access to functionality/data/etc.. without having to deal with the original authentication).

OAuth could be used in external partner sites to allow access to protected data without them having to re-authenticate a user.

The blog post "OpenID versus OAuth from the user’s perspective" has a simple comparison of the two from the user's perspective and "OAuth-OpenID: You’re Barking Up the Wrong Tree if you Think They’re the Same Thing" has more information about it.

link|flag
3  
Whoever came up with the name "OAuth" should be ashamed of themselves... – skaffman Jul 6 at 13:58
vote up 6 vote down

OpenID is (mainly) for identification/authentication, so that stackoverflow.com knows that I own chris.boyle.name (or wherever) and therefore that I am probably the same person who owned chris.boyle.name yesterday and earned some reputation points.

OAuth is designed for authorisation to take actions on your behalf, so that stackoverflow.com (or wherever) can ask permission to, say, Tweet on your behalf automatically, without knowing your Twitter password.

link|flag
vote up 2 vote down

OAuth

Used for delegated authorization only -- meaning you are authorizing a third-party service access to use personal data, without giving out a password. Also OAuth "sessions" generally live longer than user sessions. Meaning that OAuth is designed to allow authorization

i.e. Flickr uses OAuth to allow third-party services to post and edit a persons picture on their behalf, without them having to give out their flicker username and password.

OpenID

Used to authenticate single sign-on identity. All OpenID is supposed to do is allow an OpenID provider to prove that you say you are. However many sites use identity authentication to provide authorization (however the two can be separated out)

i.e. One shows their passport at the airport to authenticate (or prove) the person's who's name is on the ticket they are using is them.

link|flag
vote up 1 vote down

OpenID and OAuth are each HTTP-based protocols for authentication and/or authorization. Both are intended to allow users to perform actions without giving authentication credentials or blanket permissions to clients or third parties. While they are similar, and there are proposed standards to use them both together, they are separate protocols.

OpenID is intended for federated authentication. A client accepts an identity assertion from any provider (although clients are free to whitelist or blacklist providers).

OAuth is intended for delegated authorization. A client registers with a provider, which provides authorization tokens which it will accept to perform actions on the user's behalf.

OAuth is currently better suited for authorization, because further interactions after authentication are built into the protocol, but both protocols are evolving. OpenID and its extensions could be used for authorization, and OAuth can be used for authentication, which can be thought of as a no-op authorization.

link|flag

Your Answer

Get an OpenID
or

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