使用临时二维码的参考办法为什么还是有10W的调用限制?
发布于 4 年前 作者 jingliu 8226 次浏览 来自 问答

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

调用代码如下

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 回复

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

回到顶部