PHP Tutorial for OpenId and OAuth - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T15:27:14Z http://stackoverflow.com/feeds/question/76184 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/76184/php-tutorial-for-openid-and-oauth 13 PHP Tutorial for OpenId and OAuth VirtuosiMedia 2008-09-16T19:48:11Z 2009-06-12T11:47:15Z <p>Is there a good tutorial for implementing OpenId and OAuth together in PHP? All of the OpenId tutorials I've seen on the official OpenId site haven't been as helpful or as simple as they could have been. I don't think I've seen any tutorials on using both of them together. (For OpenId, I'd want to be both a provider and a consumer.) If there are no tutorials for using them together, tutorials on implementing either one in PHP would also be helpful.</p> http://stackoverflow.com/questions/76184/php-tutorial-for-openid-and-oauth/76824#76824 1 Answer by fixedd for PHP Tutorial for OpenId and OAuth fixedd 2008-09-16T20:43:07Z 2008-09-16T20:43:07Z <p>Could you explain a little more clearly what you're trying to do? There should be any need to have a tutorial to explain how to implement them both as they solve different problems, OpenID for authentication and OAuth for authorization. </p> <p>Thats said, the only libraries I could find that would do everything you like are <a href="http://code.google.com/p/oauth-php/" rel="nofollow">oauth-php</a> (which has basically no documentation) and <a href="http://framework.zend.com/manual/en/zend.openid.html" rel="nofollow">Zend_OpenID</a>.</p> http://stackoverflow.com/questions/76184/php-tutorial-for-openid-and-oauth/159089#159089 17 Answer by Steve Tranby for PHP Tutorial for OpenId and OAuth Steve Tranby 2008-10-01T18:40:56Z 2008-10-01T18:40:56Z <p>This is a complex solution which is why it's not easy to make simple. <a href="http://softwareas.com/oauth-openid-youre-barking-up-the-wrong-tree-if-you-think-theyre-the-same-thing" rel="nofollow">oAuth is not OpenID</a> is a good post on some of the specifics of each. It might help to look at tutorials for any language, and figure out how to port it to PHP. oAuth is sort of new, and thus people have just started implementing it.</p> <p>You use <a href="http://www.intertwingly.net/blog/2007/01/03/OpenID-for-non-SuperUsers" rel="nofollow">your domain as your OpenID</a> Provider.</p> <p>If you want a pre-baked solution, try to utilize one of the libraries created for php (or port another). </p> <p><strong>Here are some resources:</strong></p> <p>OpenID:</p> <p><a href="http://www.plaxo.com/api/openid_recipe" rel="nofollow">Plaxo's Open ID Guide</a></p> <p><a href="http://wiki.openid.net/Libraries" rel="nofollow">Libraries for OpenID</a> </p> <p><a href="http://framework.zend.com/manual/en/zend.openid.html" rel="nofollow">Reference for the Zend OpenID</a> </p> <p>oAuth:</p> <p><a href="http://www.slideshare.net/leahculver/oauth-open-api-authentication" rel="nofollow">Slides on oAuth Authentication</a></p> <p><a href="http://oauth.net/code" rel="nofollow">Libraries for oAuth</a> </p> <p><a href="http://www.hueniverse.com/hueniverse/2007/09/explaining-oaut.html" rel="nofollow">How to get started</a> | <a href="http://www.hueniverse.com/hueniverse/2007/10/beginners-gui-1.html" rel="nofollow">Visual View of oAuth</a></p> <p>Here's an example of how to use oAuth in PHP for <a href="http://code.google.com/p/oauth-php/wiki/ConsumerHowTo" rel="nofollow">Consumer</a> and <a href="http://code.google.com/p/oauth-php/wiki/ServerHowTo" rel="nofollow">Server</a> using <a href="http://code.google.com/p/oauth-php/" rel="nofollow">oauth-php</a> on Google Code.</p> <p><hr /></p> <p>Protocol Overview (OpenID)</p> <ol> <li>The end user initiates authentication (Initiation) by presenting a User-Supplied Identifier to the Relying Party via their User-Agent.</li> <li>After normalizing (Normalization) the User-Supplied Identifier, the Relying Party performs discovery (Discovery) on it and establishes the OP Endpoint URL that the end user uses for authentication. It should be noted that the User-Supplied Identifier may be an OP Identifier, as discussed in Section 7.3.1 (Discovered Information), which allows selection of a Claimed Identifier at the OP or for the protocol to proceed without a Claimed Identifier if something else useful is being done via an extension (Extensions).</li> <li>(optional) The Relying Party and the OP establish an association (Establishing Associations) -- a shared secret established using Diffie-Hellman Key Exchange (Rescorla, E., “Diffie-Hellman Key Agreement Method,” .) [RFC2631]. The OP uses an association to sign subsequent messages and the Relying Party to verify those messages; this removes the need for subsequent direct requests to verify the signature after each authentication request/response.</li> <li>The Relying Party redirects the end user's User-Agent to the OP with an OpenID Authentication request (Requesting Authentication).</li> <li>The OP establishes whether the end user is authorized to perform OpenID Authentication and wishes to do so. The manner in which the end user authenticates to their OP and any policies surrounding such authentication is out of scope for this document.</li> <li>The OP redirects the end user's User-Agent back to the Relying Party with either an assertion that authentication is approved (Positive Assertions) or a message that authentication failed (Negative Assertions).</li> <li>The Relying Party verifies (Verifying Assertions) the information received from the OP including checking the Return URL, verifying the discovered information, checking the nonce, and verifying the signature by using either the shared key established during the association or by sending a direct request to the OP.</li> </ol>