Ver código fonte

feat():修改获取授权码的方式

geek 4 anos atrás
pai
commit
c07188a1d0
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      application/index/controller/Setting.php

+ 1 - 1
application/index/controller/Setting.php

@@ -113,7 +113,7 @@ class Setting extends BaseController {
     }
 
     public function authCode($channelId) {
-        $info = (new SettingService())->setAuthUrl((int)$channelId,'https://webcast.bizconfstreaming.com/soa-mdl?channelId'.$channelId);
+        $info = (new SettingService())->setAuthUrl((int)$channelId,'https://webcast.bizconfstreaming.com/soa-mdl?channelId='.$channelId);
         Until::output(['authCode' => $info['encrypt_code']]);
     }