This commit is contained in:
2025-03-25 19:43:26 +08:00
parent 517709254a
commit 3e7295fec4
12 changed files with 191 additions and 59 deletions

View File

@@ -56,7 +56,7 @@ class GewechatFriendsLogic extends BaseLogic
$url = '/contacts/fetchContactsList';
$post_data = [];
Tools::log_to_write_txt(['查询微信好友列表[不带昵称],入参:$post_data'=>$post_data]);
$res = self::curl_post_json($url, $post_data);
$res = $this->curl_post_json($url, $post_data);
Tools::log_to_write_txt(['查询微信好友列表[不带昵称],出参:$res'=>$res]);
return $res;
}
@@ -73,7 +73,7 @@ class GewechatFriendsLogic extends BaseLogic
$url = '/contacts/getDetailInfo';
$post_data = ['wxids'=>$wxids];
Tools::log_to_write_txt(['查询微信好友列表[带昵称],入参:$post_data'=>$post_data]);
$res = self::curl_post_json($url, $post_data);
$res = $this->curl_post_json($url, $post_data);
Tools::log_to_write_txt(['查询微信好友列表[带昵称],出参:$res'=>$res]);
return $res;
}