Explorar el Código

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

geek hace 4 años
padre
commit
c07188a1d0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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']]);
     }