[更新]修改ThinkAdmin与ThinkServcie对接参数

This commit is contained in:
Anyon 2018-03-22 17:04:31 +08:00
parent df131ca173
commit f42bb62bae
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ class Config extends BasicAdmin
'appuri' => url("@wechat/api.push", '', true, true),
'appid' => $this->request->get('appid', sysconf('wechat_thr_appid')),
'appkey' => $this->request->get('appkey', sysconf('wechat_thr_appkey')),
'authurl' => config('wechat.service_url') . "/wechat/api.push/auth/redirect/{$code}.html",
'authurl' => config('wechat.service_url') . "/wechat/api.push/auth/{$code}.html",
'wechat' => $info,
]);
}

View File

@ -78,7 +78,7 @@ class WechatService
default:
list($appid, $appkey) = [sysconf('wechat_thr_appid'), sysconf('wechat_thr_appkey')];
$token = strtolower("{$name}-{$appid}-{$appkey}");
$location = config('wechat.service_url') . "/wechat/api.client/soap/param/{$token}.html";
$location = config('wechat.service_url') . "/wechat/api.client/soap/{$token}.html";
$params = ['uri' => strtolower($name), 'location' => $location, 'trace' => true];
return new SoapService(null, $params);
}