Package Data | |
---|---|
Maintainer Username: | turbo124 |
Maintainer Contact: | fabulous_php@g163.com (Ray Cheng) |
Package Create Date: | 2016-11-25 |
Package Last Update: | 2016-11-25 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 03:04:02 |
Package Statistics | |
---|---|
Total Downloads: | 14 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
##Laravel Socialite api This package is aim to retrive user data by access token when use OAuth2 Login, base on Laravel Socialite, useful for client side OAuth login
##Install composer require ray-cheng/laravel-socialite-api
open config/app.php add
LaravelSocialiteApi\SocialiteApiServiceProvider::class
to 'providers' array
php artisan list
##commands
laravel-socialite-api:clear providerName
laravel-socialite-api:make providerName
this will create a new folder 'Services' under app(or your base namespace folder)
** providerName must follow http://socialiteproviders.github.io/#providers principle **
##add event handler and listener to App\Providers\EventServiceProvider $listen property
'SocialiteProviders\Manager\SocialiteWasCalled' => [
'App\LaravelSocialiteApi\ExtendSocialite\Weibo@handle',
'App\LaravelSocialiteApi\ExtendSocialite\Weixin@handle',
]
$userInfo = Socialite::with('weibo')->stateless->user($accessToken);
some oauth server like weixin need both $token and $openid to get userinfos, so we need pass openid also.
$userInfo = Socialite::with('weixin')->stateless->user($accessToken, $openId);