tags:

views:

727

answers:

3

Hi,

I would like to implement OAuth as a service provider for my website (Google App engine Java, and also CakePhp) but I could not find any good library/tutorial. Does anybody have good references?

Regards

A: 

This site contains some useful information:

http://hueniverse.com/oauth/guide/terminology/

including this tutorial/getting started guide:

http://hueniverse.com/oauth/

and specifically for CakePHP:

http://code.42dh.com/oauth/

http://cakebaker.42dh.com/2008/09/01/using-oauth-enabled-apis-with-cakephp/

for google app engine:

http://gdatatips.blogspot.com/2009/04/oauth-in-google-app-engine.html

davek
+1  A: 

You will need to implement the OAuth provider within you application. You can use things like http://github.com/mohangk/appengine_oauth_provider to help you implement this.

Pete
+1  A: 

This might actually be a more helpful guide to what you want to do, since it is specifically about building a OAuth Provider in PHP:

http://toys.lerdorf.com/archives/55-Writing-an-OAuth-Provider-Service.html

Nick Spacek