12345678910111213141516171819 |
- <?php
- return [
- 'id' => 'api',
- 'wechat' => [
- // 原生公众号或小程序授权 appid
- 'appid' => 'wx6e3f027d8bee3ca7',
- // 原生公众号或小程序授权 secret
- 'secret' => '4cc6544a27d2361ba91706cca2b24de5',
- // accessToken 储存驱动 db|redis
- 'token_drive' => 'db'
- ],
- 'goodle' => [
- 'client_id' => '521103626174-tvkfskvjnou2uonp90fm4mvg4b0h1ioe.apps.googleusercontent.com',
- 'client_secret' => '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',
- 'redirect_uri' => 'https://t11.9026.com/api/auth/callback',//网页授权使用
- 'scopes' => ['email', 'profile']
- ]
- ];
|