From 26481c9b80391c703b673b05280f54e3b3462fd2 Mon Sep 17 00:00:00 2001 From: wang hou sheng <76928547+wanghousheng@users.noreply.github.com> Date: Thu, 11 Apr 2024 12:18:13 +0800 Subject: [PATCH] 1 --- app/api/controller/Wxserver.php | 5 +++-- app/common/library/wxserver/Server.php | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/api/controller/Wxserver.php b/app/api/controller/Wxserver.php index db5578d0..31cfcd3a 100644 --- a/app/api/controller/Wxserver.php +++ b/app/api/controller/Wxserver.php @@ -15,10 +15,11 @@ class Wxserver extends BaseController public function index() { - $appid = 'wxe3ed157849bd07b5'; + $appid = 'wx1814307a39775007'; $obj = new \app\common\library\wxserver\Server(); $arr = $obj->getPrivacySetting($appid); - return $this->renderSuccess(['arr' => $arr]); + $arr2 = $obj->setDomain($appid, $this->request->domain(true)); + return $this->renderSuccess(['arr' => $arr, 'arr2' => $arr2]); } diff --git a/app/common/library/wxserver/Server.php b/app/common/library/wxserver/Server.php index 90fc88c9..af549fc6 100644 --- a/app/common/library/wxserver/Server.php +++ b/app/common/library/wxserver/Server.php @@ -480,6 +480,7 @@ class Server $data['downloaddomain'] = $domain; $result = $this->curlPost($url, json_encode($data)); $result = json_decode($result, true); + return $result; if ($result && !empty($result['errmsg']) && $result['errmsg'] == 'ok') { return true; } @@ -493,7 +494,7 @@ class Server * @return bool * @author: wanghousheng */ - public function getPrivacySetting($appid): bool + public function getPrivacySetting($appid) { $token = $this->authorizerAccessToken($appid); if ($token) { @@ -512,6 +513,7 @@ class Server $data['owner_setting']['notice_method'] = '公告'; $result = $this->curlPost($url, json_encode($data)); $result = json_decode($result, true); + return $result; if ($result && !empty($result['errmsg']) && $result['errmsg'] == 'ok') { return true; }