https://socialiteproviders.github.io/providers/qq.html

1. Installation

// This assumes that you have composer installed globally
composer require socialiteproviders/qq

# 2. Service Provider

  • Remove Laravel\Socialite\SocialiteServiceProvider from your providers[] array in config\app.php if you have added it already.

  • Add \SocialiteProviders\Manager\ServiceProvider::class to your providers[] array in config\app.php.

For example:

'providers' => [
// a whole bunch of providers
// remove 'Laravel\Socialite\SocialiteServiceProvider',
\SocialiteProviders\Manager\ServiceProvider::class, // add
];
  • Note: If you would like to use the Socialite Facade, you need to install it.

# 3. Event Listener

  • Add SocialiteProviders\Manager\SocialiteWasCalled event to your listen[] array in app/Providers/EventServiceProvider.

  • Add your listeners (i.e. the ones from the providers) to the SocialiteProviders\Manager\SocialiteWasCalled[] that you just created.

  • The listener that you add for this provider is 'SocialiteProviders\\QQ\\QqExtendSocialite@handle',.

  • Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.

For example:

/**
* The event handler mappings for the application.
*
* @var array
*/
protected $listen = [
\SocialiteProviders\Manager\SocialiteWasCalled::class => [
// add your listeners (aka providers) here
'SocialiteProviders\\QQ\\QqExtendSocialite@handle',
],
];

# Reference

# 4. Configuration setup

You will need to add an entry to the services configuration file so that after config files are cached for usage in production environment (Laravel command artisan config:cache) all config is still available.

# Add to config/services.php.

'qq' => [
'client_id' => env('QQ_KEY'),
'client_secret' => env('QQ_SECRET'),
'redirect' => env('QQ_REDIRECT_URI')
],

# 5. Usage

return Socialite::with('QQ')->redirect();

# Lumen Support

You can use Socialite providers with Lumen. Just make sure that you have facade support turned on and that you follow the setup directions properly.

Note: If you are using this with Lumen, all providers will automatically be stateless since Lumen does not keep track of state.

Also, configs cannot be parsed from the services[] in Lumen. You can only set the values in the .env file as shown exactly in this document. If needed, you can also override a config (shown below).

# Stateless

  • You can set whether or not you want to use the provider as stateless. Remember that the OAuth provider (Twitter, Tumblr, etc) must support whatever option you choose.

Note: If you are using this with Lumen, all providers will automatically be stateless since Lumen does not keep track of state.

// to turn off stateless
return Socialite::with('QQ')->stateless(false)->redirect(); // to use stateless
return Socialite::with('QQ')->stateless()->redirect();

# Overriding a config

If you need to override the provider's environment or config variables dynamically anywhere in your application, you may use the following:

$clientId = "secret";
$clientSecret = "secret";
$redirectUrl = "http://yourdomain.com/api/redirect";
$additionalProviderConfig = ['site' => 'meta.stackoverflow.com'];
$config = new \SocialiteProviders\Manager\Config($clientId, $clientSecret, $redirectUrl, $additionalProviderConfig);
return Socialite::with('QQ')->setConfig($config)->redirect();

# Retrieving the Access Token Response Body

Laravel Socialite by default only allows access to the access_token. Which can be accessed via the \Laravel\Socialite\User->token public property. Sometimes you need access to the whole response body which may contain items such as a refresh_token.

You can get the access token response body, after you called the user() method in Socialite, by accessing the property $user->accessTokenResponseBody;

$user = Socialite::driver('QQ')->user();
$accessTokenResponseBody = $user->accessTokenResponseBody;

# Reference

参考地址:https://laravel-china.org/docs/laravel/5.6/socialite/1418

https://socialiteproviders.github.io/providers/qq.html

最新文章

  1. 基于redis 实现分布式锁的方案
  2. OpenLayers的定制
  3. Node.js 自学之旅
  4. Java Synchronized Blocks
  5. 【BZOJ2595】游览计划(状压DP,斯坦纳树)
  6. 【军哥谈CI框架】之入门教程之第二讲:分析CI结构和CI是怎么工作的
  7. util-C# 复杂条件查询(sql 复杂条件查询)查询解决方案
  8. linux中挂载硬盘报错(you must specify the filesystem type)
  9. 扔鸡蛋问题详解(Egg Dropping Puzzle)
  10. Python学习笔记007_图形用户界面[EasyGui][Tkinter]
  11. 使用Recovery Services备份Azure ARM模式虚拟机
  12. JS 中的this指向问题和call、apply、bind的区别
  13. HDU-1709 The Balance(生成函数)
  14. 前端基础之 html
  15. jquery tooltip
  16. python 在window 系统 连接并操作远程 oracle 数据库
  17. python模块:xml
  18. 03-02_配置weblogic domain
  19. Hadoop学习笔记——安装Hadoop
  20. Ubuntu 提权漏洞(CVE-2019-7304)复现

热门文章

  1. 3D hover文字特效
  2. 前端js框架引入管理bundle.js
  3. 解决Cesium1.50对gltf2.0/3dtiles数据读取的问题
  4. day18 9.转账汇款案例(1)
  5. web前端学习(二)html学习笔记部分(5)--拖放元素、canvas画布使用
  6. pycharm 测试执行成功,但却无法成功生成测试报告(使用HTMLTestRunner)的解决办法
  7. Postgresql 正则表达式【转】
  8. RestFul 与 RPC
  9. Sass @at-root (2)
  10. HTML小技巧:按钮中的文字换行 .