AccessToken.php 1.1 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\service\fast_hand;
  3. /*
  4. * +----------------------------------------------------------------------+
  5. * | xiegeng admin system |
  6. * +----------------------------------------------------------------------+
  7. * | Administrator-13:25-2022-PhpStorm
  8. * +----------------------------------------------------------------------+
  9. * | Author: xiegeng <957723538@qq.com> |
  10. * | FILENAME: AccessToken.php |
  11. * +----------------------------------------------------------------------+
  12. */
  13. use think\Cache;
  14. class AccessToken{
  15. public static function get(){
  16. return Cache::remember('ks_access_token',function (){
  17. $postData['app_id'] = config('kuaishou.appid');
  18. $postData['app_secret'] = config('kuaishou.appsecret');
  19. $postData['grant_type'] = 'client_credentials';
  20. $res = httpCurlPost('https://open.kuaishou.com/oauth2/access_token', $postData);
  21. $res = json_decode($res, 1);
  22. return $res['access_token'];
  23. },40*3600);
  24. }
  25. }