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.
closed as off topic by Andrew Barber♦ May 6 at 7:34
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
This is a complex solution which is why it's not easy to make simple. oAuth is not OpenID 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. You use your domain as your OpenID Provider. If you want a pre-baked solution, try to utilize one of the libraries created for php (or port another). Here are some resources: OpenID: oAuth: Slides on oAuth Authentication How to get started | Visual View of oAuth Here's an example of how to use oAuth in PHP for Consumer and Server using oauth-php on Google Code. Protocol Overview (OpenID)
|
|||
|
|
|
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. Thats said, the only libraries I could find that would do everything you like are oauth-php (which has basically no documentation) and Zend_OpenID. |
|||
|
|