Skip to content
This repository has been archived by the owner on Sep 4, 2018. It is now read-only.

useful for IOS, Andriod OAuth login with laravel socialite(Laravel below 5.1)

Notifications You must be signed in to change notification settings

akulubala/laravel-socialite-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

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


*notice:

From laravel 5.2 you don't need this package anymore, because SocialiteProviders support get user by token from 2.0


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

About

useful for IOS, Andriod OAuth login with laravel socialite(Laravel below 5.1)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages