12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * This file is part of the apiadmin/tiktok.
- */
- namespace App\Libs\TikTok\MiniProgram\Auth;
- use App\Libs\TikTok\MiniProgram\Kernel\AccessToken as BaseAccessToken;
- /**
- * Class AccessToken.
- *
- * @author zhaoxiang <zhaoxiang051405@gmail.com>
- */
- class AccessToken extends BaseAccessToken {
- /**
- * @return array
- */
- protected function getCredentials(): array {
- return [
- 'appid' => $this->app['config']['app_id'],
- 'secret' => $this->app['config']['secret'],
- 'grant_type' => 'client_credential',
- ];
- }
- }
|