zoukankan      html  css  js  c++  java
  • 微信api调用限制,45009 reach max api daily quota limit 解决方法

    官方文档:

    https://developers.weixin.qq.com/doc/offiaccount/Message_Management/API_Call_Limits.html

    公众号调用接口并不是无限制的。为了防止公众号的程序错误而引发微信服务器负载异常,默认情况下,每个公众号调用接口都不能超过一定限制,当超过一定限制时,调用对应接口会收到如下错误返回码:

    {"errcode":45009,"errmsg":"api freq out of limit"}
    

    开发者可以登录微信公众平台,在帐号后台开发者中心接口权限模板查看帐号各接口当前的日调用上限和实时调用量,对于认证帐号可以对实时调用量清零,说明如下:

    1、由于指标计算方法或统计时间差异,实时调用量数据可能会出现误差,一般在1%以内。

    2、每个帐号每月共10次清零操作机会,清零生效一次即用掉一次机会(10次包括了平台上的清零和调用接口API的清零)。

    3、第三方帮助公众号调用时,实际上是在消耗公众号自身的quota。

    4、每个有接口调用限额的接口都可以进行清零操作。

    POST HTTP调用: https://api.weixin.qq.com/cgi-bin/clear_quota?access_token=ACCESS_TOKEN 

    调用示例:
    { “appid”:“APPID” } 

    正常情况下,会返回:
    { "errcode" :0, "errmsg" : "ok" } 

    如果调用超过限制次数,则返回:

    { "errcode" :48006, "errmsg" : "forbid to clear quota because of reaching the limit" } 
     
  • 相关阅读:
    blocking to nonblocking of Python
    hug -- Embrace the APIs of the future
    supplychain on blockchain
    xstate -- JavaScript state machines and statecharts
    计算PI -- 采用刘徽的割圆术方法
    Gunicorn
    AIOHTTP
    APScheduler
    prefect
    FastAPI
  • 原文地址:https://www.cnblogs.com/mjbenkyo/p/12146972.html
Copyright © 2011-2022 走看看