myxland / think-social
ThinkPHP5 Social Library
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:think-extend
Requires
- php: >=5.6.0
- guzzlehttp/guzzle: ~6.0
- topthink/think-helper: ^1.0
- topthink/think-installer: >=1.0.10
This package is not auto-updated.
Last update: 2025-03-30 09:10:16 UTC
README
安装
composer require myxland/think-social:dev-master
php think social:config
用法
1、控制器
<?php
namespace app\index\controller;
use think\Controller;
use myxland\social\Social;
class Auth extends Controller
{
public function redirectToSocial($channel)
{
return Social::channel($channel)->redirect();
}
public function handleSocialCallback($channel)
{
$user = Social::channel($channel)->user();
// $user->getToken();
// $user->getId();
// $user->getName();
// $user->getNickname();
// $user->getAvatar();
// $user->getEmail();
}
}
2、定义路由
Route::get('auth/:channel/callback', 'Auth/handleSocialCallback');
Route::get('auth/:channel', 'Auth/redirectToSocial');