laravel 第三方登录,支持微信、qq。
安装 使用 composer 命令
composer require weann/socialite
注册服务提供者
weann\socialite\socialiteserviceprovider::class,
注册facade
'socialite' => weann\socialite\facades\socialite::class,
使用 配置文件config/services.php
'wechat' => [ 'client_id' => 'app_id', 'client_secret' => 'app_secret', 'redirect' => 'callback_url'],
将用户重定向到授权页面。 route::get('/', function () { return socialite::driver('wechat')->redirect();});
授权后的回调。
route::get('callback', function () { $user = socialite::driver('wechat')->user() dd($user);});
项目主页:http://www.open-open.com/lib/view/home/1438146894410