mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]修改二维码接口支持临时二维码
This commit is contained in:
parent
e0552c87dc
commit
54beb34446
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user