2017 © Pedro Peláez
 

library oauth

Laravel OAuth library based on Lusitanian/PHPoAuthLib

image

jenssegers/oauth

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  • Wednesday, January 25, 2017
  • by jenssegers
  • Repository
  • 5 Watchers
  • 63 Stars
  • 12,172 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 13 Forks
  • 8 Open issues
  • 11 Versions
  • 2 % Grown

The README.md

Laravel OAuth

Build Status Coverage Status, (*1)

A Laravel OAuth 1 and 2 library, using PHPoAuthLib. This library shares the Laravel session to store tokens and supports the services configuration file that was introduced in Laravel., (*2)

Supported services

  • OAuth1
    • BitBucket
    • Etsy
    • FitBit
    • Flickr
    • Scoop.it!
    • Tumblr
    • Twitter
    • Xing
    • Yahoo
  • OAuth2
    • Amazon
    • BitLy
    • Box
    • Dailymotion
    • Dropbox
    • Facebook
    • Foursquare
    • GitHub
    • Google
    • Harvest
    • Heroku
    • Instagram
    • Jawbone UP
    • LinkedIn
    • Mailchimp
    • Microsoft
    • PayPal
    • Pocket
    • Reddit
    • RunKeeper
    • SoundCloud
    • Spotify
    • Ustream
    • Vkontakte
    • Yammer

Installation

Install using composer:, (*3)

composer require jenssegers/oauth

Add the service provider in app/config/app.php:, (*4)

'Jenssegers\OAuth\OAuthServiceProvider',

Add the OAuth alias to app/config/app.php:, (*5)

'OAuth'            => 'Jenssegers\OAuth\Facades\OAuth',

Configuration

This package supports configuration through the services configuration file located in config/services.php:, (*6)

'facebook' => [
    'client_id'     => 'your-client-id',
    'client_secret' => 'your-client-secret',
    'scope'         => [],
]

Usage

Once you have added your credentials, you can create PHPoAuthLib service objects like this:, (*7)

$oauth = OAuth::consumer('facebook');

To override the default redirect url, or scope use:, (*8)

$oauth = OAuth::consumer('facebook', URL::to('url'), ['email', 'publish_actions']);

Once you have the service object, you can use it to interact with the service's API. For more information check out PHPoAuthLib., (*9)

Example

Example usage for the Facebook API., (*10)

$facebook = OAuth::consumer('facebook');

// Response from Facebook
if ($code = Input::get('code'))
{
    $token = $facebook->requestAccessToken($code);

    $result = json_decode($facebook->request('/me'), true);

    echo 'Your unique facebook user id is: ' . $result['id'] . ' and your name is ' . $result['name'];
}

// Redirect to login
else
{
    return Redirect::away((string) $facebook->getAuthorizationUri());
}

For more examples check out PHPoAuthLib., (*11)

The Versions

01/05 2015

v2.0.1

2.0.1.0

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel oauth

01/05 2015

v2.0.0

2.0.0.0

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel oauth

14/02 2015

dev-league

dev-league

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel oauth

14/02 2015

v2.0.0-beta

2.0.0.0-beta

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel oauth

05/11 2014

v1.1.2

1.1.2.0

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel oauth

03/07 2014

v1.1.1

1.1.1.0

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel oauth

20/06 2014

v1.1.0

1.1.0.0

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel oauth

01/05 2014

v1.0.1

1.0.1.0

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel oauth

24/04 2014

v1.0.0

1.0.0.0

Laravel OAuth library based on Lusitanian/PHPoAuthLib

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel oauth