takashi-moripower / cake-opauth
CakePHP 的 CakeOpauth 插件
0.0.2
2016-06-21 01:23 UTC
Requires
- php: >=5.4.16
- cakephp/cakephp: ~3.0
- opauth/facebook: *
- opauth/google: *
- opauth/opauth: *
- opauth/twitter: *
Requires (Dev)
This package is not auto-updated.
Last update: 2024-09-24 22:35:29 UTC
README
安装
您可以使用 composer 将此插件安装到您的 CakePHP 应用程序中。
安装 composer 包的推荐方法是
composer require takashi-moripower/cake-opauth
app/comfig/app.php
... 'opauth' => [ 'security_salt' => 'SECURITY_SALT', // 'path' => '/opauth/auth/', // 此插件的路径 'callback_url' => '/opauth/auth/callback/', // opauth 返回后的路径 'Strategy' => [ 'Twitter' => [ 'key' => 'YOUR_KEY', 'secret' => 'YOUR_SECRET' ], 'Facebook' => [ 'app_id' => 'YOUR_APPID', 'app_secret' => 'YOUR_APPSECRET' ] ] ] ...