ByteDanceAccessToken.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. namespace app\service\byte_dance;
  3. use think\Cache;
  4. class ByteDanceAccessToken implements ByteDanceInterface {
  5. protected $appId;
  6. protected $appSecret;
  7. protected $cacheName='cache_bytedance_access_token';
  8. public function get()
  9. {
  10. $token=Cache::get($this->cacheName);
  11. if(!$token){
  12. $request=ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/token',[
  13. 'appid'=>ByteDance::appId(),
  14. 'secret'=>ByteDance::appSecret(),
  15. 'grant_type'=>'client_credential',
  16. ]);
  17. $token=$request['access_token'];
  18. Cache::set($this->cacheName,$token,$request['expires_in']-10);
  19. }
  20. return $token;
  21. }
  22. public function getWangKa()
  23. {
  24. $token=Cache::get($this->cacheName);
  25. if(!$token){
  26. $request=ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/token',[
  27. 'appid'=>ByteDance::appIdTwo(),
  28. 'secret'=>ByteDance::appSecretTwo(),
  29. 'grant_type'=>'client_credential',
  30. ]);
  31. $token=$request['access_token'];
  32. Cache::set($this->cacheName,$token,$request['expires_in']-10);
  33. }
  34. return $token;
  35. }
  36. public function getHaoYuan()
  37. {
  38. $token=Cache::get($this->cacheName);
  39. if(!$token){
  40. $request=ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/token',[
  41. 'appid'=>ByteDance::appIdThree(),
  42. 'secret'=>ByteDance::appSecretThree(),
  43. 'grant_type'=>'client_credential',
  44. ]);
  45. $token=$request['access_token'];
  46. Cache::set($this->cacheName,$token,$request['expires_in']-10);
  47. }
  48. return $token;
  49. }
  50. /**
  51. * @param mixed $appId
  52. */
  53. public function setAppId($appId)
  54. {
  55. $this->appId = $appId;
  56. return $this;
  57. }
  58. /**
  59. * @param mixed $appSecret
  60. */
  61. public function setAppSecret($appSecret)
  62. {
  63. $this->appSecret = $appSecret;
  64. return $this;
  65. }
  66. }