From cc0c53d93d29654dbfc94a82587062d89ae4013d Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 29 Jan 2018 11:26:51 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=AD=A3=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3URL=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Wechat/Custom.php | 2 +- Wechat/Qrcode.php | 2 +- Wechat/User.php | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Wechat/Custom.php b/Wechat/Custom.php index dfbf77e..c47c330 100644 --- a/Wechat/Custom.php +++ b/Wechat/Custom.php @@ -184,7 +184,7 @@ class Custom extends Wechat */ public function massGet($msg_id) { - $url = "https://api.weixin.qq.com/cgi-bin/message/mass/preview?access_token=ACCESS_TOKEN"; + $url = "https://api.weixin.qq.com/cgi-bin/message/mass/get?access_token=ACCESS_TOKEN"; $this->registerApi($url, __FUNCTION__, func_get_args()); return $this->httpPostForJson($url, ['msg_id' => $msg_id]); } diff --git a/Wechat/Qrcode.php b/Wechat/Qrcode.php index 625acf1..33b65a3 100644 --- a/Wechat/Qrcode.php +++ b/Wechat/Qrcode.php @@ -34,7 +34,7 @@ class Qrcode extends Wechat */ public function create($scene, $expire_seconds = 0) { - if (is_numeric($scene)) { + if (is_integer($scene)) { $data = ['action_name' => 'QR_LIMIT_SCENE', 'action_info' => ['scene' => ['scene_id' => $scene]]]; } else { $data = ['action_name' => 'QR_LIMIT_STR_SCENE', 'action_info' => ['scene' => ['scene_str' => $scene]]]; diff --git a/Wechat/User.php b/Wechat/User.php index 05d2d75..b55c384 100644 --- a/Wechat/User.php +++ b/Wechat/User.php @@ -42,11 +42,12 @@ class User extends Wechat /** * 获取用户基本信息(包括UnionID机制) * @param string $openid + * @param string $lang * @return array * @throws Exceptions\InvalidResponseException * @throws Exceptions\LocalCacheException */ - public function getUserInfo($openid) + public function getUserInfo($openid, $lang = 'zh_CN') { $url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_TOKEN&openid={$openid}&lang=zh_CN"; $this->registerApi($url, __FUNCTION__, func_get_args());