goncalobv / scribe-php

Simple OAuth library for PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to the home of Scribe, the simple OAuth PHP lib!

Why use Scribe?

Scribe is proven to be the most straightforward and reliable OAuth library for java, (written by Pablo Fernandez) so I decided to port it to PHP.

Dead Simple

Who said OAuth was difficult? Configuring scribe is so easy your grandma can do it! check it out:

$builder = new ServiceBuilder();
$service = $builder->provider(new TwitterApi())
->apiKey(YOUR_API_KEY)
->apiSecret(YOUR_API_SECRET)
->build();

Supports all major 1.0a and 2.0 OAuth APIs out-of-the-box

  • Google
  • Facebook
  • Yahoo
  • LinkedIn
  • Twitter
  • Foursquare
  • Evernote
  • Vimeo
  • Yammer
  • Windows Live
  • and many more!

Small and modular

Scribe’s code is small and simple to understand. No smart-ass or “clever” hacks here.

Stable & bulletproof

Good test coverage to keep you safe from harm.

When something bad actually happens, Scribe’s meaningful error messages will tell you exactly what went wrong, when and where.

About me

LinkedIn profile

Email me: gmaurol at gmail.com

Follow me: @gmaurol

About

Simple OAuth library for PHP

License:MIT License


Languages

Language:PHP 100.0%