From 54beb34446b0fae9a7b2771b483936129dd32fc7 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 5 Feb 2018 12:04:58 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E4=BA=8C?= =?UTF-8?q?=E7=BB=B4=E7=A0=81=E6=8E=A5=E5=8F=A3=E6=94=AF=E6=8C=81=E4=B8=B4?= =?UTF-8?q?=E6=97=B6=E4=BA=8C=E7=BB=B4=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Qrcode.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/WeChat/Qrcode.php b/WeChat/Qrcode.php index e23bf0c..f6f2c42 100644 --- a/WeChat/Qrcode.php +++ b/WeChat/Qrcode.php @@ -39,7 +39,10 @@ class Qrcode extends BasicWeChat } else { $data = ['action_name' => 'QR_LIMIT_STR_SCENE', 'action_info' => ['scene' => ['scene_str' => $scene]]]; } - empty($expire_seconds) || $data['expire_seconds'] = $expire_seconds; + if ($expire_seconds > 0) { + $data['expire_seconds'] = $expire_seconds; + $data['action_name'] = is_integer($scene) ? 'QR_SCENE' : 'QR_STR_SCENE'; + } $url = "https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=ACCESS_TOKEN"; $this->registerApi($url, __FUNCTION__, func_get_args()); return $this->httpPostForJson($url, $data);