[更新]修改二维码接口支持临时二维码

This commit is contained in:
Anyon 2018-02-05 12:04:58 +08:00
parent e0552c87dc
commit 54beb34446

View File

@ -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);