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!
|
7
|
|||||||||||||||||||
|
|
|
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. |
||||
|
|
|
OpenID is (mainly) for identification/authentication, so that OAuth is designed for authorisation to take actions on your behalf, so that |
||
|
|
|
|
OAuth Used for delegated 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 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. |
||
|
|
|
|
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. |
|||
|
|