jenssegers/oauth
最新稳定版本:v2.0.2
Composer 安装命令:
composer require jenssegers/oauth
包简介
Laravel OAuth library based on Lusitanian/PHPoAuthLib
README 文档
README
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.
Supported services
- OAuth1
- BitBucket
- Etsy
- FitBit
- Flickr
- Scoop.it!
- Tumblr
- Yahoo
- OAuth2
- Amazon
- BitLy
- Box
- Dailymotion
- Dropbox
- Foursquare
- GitHub
- Harvest
- Heroku
- Jawbone UP
- Mailchimp
- Microsoft
- PayPal
- RunKeeper
- SoundCloud
- Spotify
- Ustream
- Vkontakte
- Yammer
Installation
Install using composer:
composer require jenssegers/oauth
Add the service provider in app/config/app.php:
'Jenssegers\OAuth\OAuthServiceProvider',
Add the OAuth alias to app/config/app.php:
'OAuth' => 'Jenssegers\OAuth\Facades\OAuth',
Configuration
This package supports configuration through the services configuration file located in config/services.php:
'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:
$oauth = OAuth::consumer('facebook');
To override the default redirect url, or scope use:
$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.
Example
Example usage for the Facebook API.
$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.
统计信息
- 总下载量: 18.53k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 67
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-04-24