Justin
Justin

Reputation: 4263

Are there any php classes or libraries out there to handle oAuth 2.0?

Before I go and write a wrapper for Facebook and oAuth 2.0 I was wondering if anyone knew of any code out there that anyone else has used already.

Upvotes: 1

Views: 2351

Answers (3)

Dylan Hogg
Dylan Hogg

Reputation: 3398

I've used the PHP-OAuth2 library by adoy to write a sample OAuth 2.0 client.

The docs at the time of writing describe it as a Light PHP wrapper for the OAuth 2.0 protocol (based on OAuth 2.0 Authorization Protocol draft-ietf-oauth-v2-15)

Upvotes: 1

RobertPitt
RobertPitt

Reputation: 57258

Source: http://oauth.net/code/

Upvotes: 4

jwueller
jwueller

Reputation: 30996

Take a look at PHP's OAuth extension or http://code.google.com/p/oauth/.

Upvotes: 0

Related Questions