turbo124/laravel-socialite-api

package for laravel 5.2 retrieve user datas serve for restful api authentication.

Maintainers

👁 turbo124

Package info

github.com/turbo124/laravel-socialite-api

pkg:composer/turbo124/laravel-socialite-api

Statistics

Installs: 15

Dependents: 0

Suggesters: 0

Stars: 0

1.5 2016-01-06 17:12 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 48b384c5f8f1c6a1b7c4a14d40dcd00431147d26

  • Ray Cheng <fabulous_php.woop@g163.com>

apiAuthenticationoauth2restfullaravelsocialete

This package is auto-updated.

Last update: 2026-06-22 18:03:55 UTC


README

##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

check installed

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',
 ]

test

 $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);