1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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,
- ];
- }
- }
|