ByteDanceCode2Session.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace app\service\byte_dance;
  3. use think\Cache;
  4. class ByteDanceCode2Session implements ByteDanceInterface {
  5. protected $code;
  6. public function setCode($code)
  7. {
  8. $this->code = $code;
  9. return $this;
  10. }
  11. public function get()
  12. {
  13. return ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/jscode2session',$this->params());
  14. }
  15. protected function params(){
  16. return [
  17. 'appid'=>ByteDance::appId(),
  18. 'secret'=>ByteDance::appSecret(),
  19. 'code'=>$this->code,
  20. ];
  21. }
  22. //新小程序
  23. public function setCodeTwo($code)
  24. {
  25. $this->code = $code;
  26. return $this;
  27. }
  28. public function getTwo()
  29. {
  30. return ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/jscode2session',$this->paramsTwo());
  31. }
  32. protected function paramsTwo(){
  33. return [
  34. 'appid'=>ByteDance::appIdTwo(),
  35. 'secret'=>ByteDance::appSecretTwo(),
  36. 'code'=>$this->code,
  37. ];
  38. }
  39. }