123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace app\service\byte_dance;
- use think\Cache;
- class ByteDanceCode2Session implements ByteDanceInterface {
- protected $code;
- public function setCode($code)
- {
- $this->code = $code;
- return $this;
- }
- public function get()
- {
- return ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/jscode2session',$this->params());
- }
- protected function params(){
- return [
- 'appid'=>ByteDance::appId(),
- 'secret'=>ByteDance::appSecret(),
- 'code'=>$this->code,
- ];
- }
- //新小程序
- public function setCodeTwo($code)
- {
- $this->code = $code;
- return $this;
- }
- public function getTwo()
- {
- return ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/jscode2session',$this->paramsTwo());
- }
- protected function paramsTwo(){
- return [
- 'appid'=>ByteDance::appIdTwo(),
- 'secret'=>ByteDance::appSecretTwo(),
- 'code'=>$this->code,
- ];
- }
-
- //新新小程序
- public function setCodeThree($code)
- {
- $this->code = $code;
- return $this;
- }
- public function getThree()
- {
- return ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/jscode2session',$this->paramsThree());
- }
- protected function paramsThree(){
- return [
- 'appid'=>ByteDance::appIdThree(),
- 'secret'=>ByteDance::appSecretThree(),
- 'code'=>$this->code,
- ];
- }
- }
|