使用临时二维码的参考办法为什么还是有10W的调用限制?

发布于 5 年前作者 jingliu8546 次浏览最后编辑 5 年前来自 ask

按照官方文档进行临时二维码的调用,为什么还是会提示调用快超了。

调用代码如下

public function getQrcode($scene_id)
    {
        $url = "https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=" . $this->accessToken;
        $data = array(
            "expire_seconds" => 3600,
            "action_name" => "QR_SCENE",
            "action_info" => array("scene" => array("scene_id" => $scene_id))
        );
        $result = $this->httpRequest($url, json_encode($data));
        return $result;
    }

https://developers.weixin.qq.com/doc/offiaccount/Account_Management/Generating_a_Parametric_QR_Code.html

1 回复
uzhu
uzhu1 楼10 个月前

你好,麻烦提供下请求包,回包信息。