# 查询openAPI调用quota
本接口用于查询公众号/小程序/第三方平台等接口的每日调用接口的额度以及调用次数。
使用过程中如遇到问题,可在开放平台服务商专区发帖交流。
# 注意事项
1、如果查询的api属于公众号的接口,则需要用公众号的access_token;如果查询的api属于小程序的接口,则需要用小程序的access_token;如果查询的接口属于第三方平台的接口,则需要用第三方平台的component_access_token;否则会出现76022报错。
2、如果是第三方服务商代公众号或者小程序查询公众号或者小程序的api,则需要用authorizer_access_token
3、每个接口都有调用次数限制,请开发者合理调用接口
4、”/xxx/sns/xxx“这类接口不支持使用该接口,会出现76022报错。
# 请求地址
POST https://api.weixin.qq.com/cgi-bin/openapi/quota/get?access_token=ACCESS_TOKEN
# 请求参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | string | 是 | 依据需要查询的接口属于的账号类型不同而使用不同的token,详情查看注上述注意事项 |
cgi_path | string | 是 | api的请求地址,例如"/cgi-bin/message/custom/send";不要前缀“https://api.weixin.qq.com” ,也不要漏了"/",否则都会76003的报错 |
请求示例:
{
"cgi_path":"/wxa/gettemplatedraftlist"
}
# 返回参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | Number | 返回码 |
errmsg | String | 错误信息 |
quota | object | quota详情 |
# quota结构体
参数 | 类型 | 说明 |
---|---|---|
daily_limit | Number | 当天该账号可调用该接口的次数 |
used | Number | 当天已经调用的次数 |
remain | Number | 当天剩余调用次数 |
返回结果示例:
{
"errcode": 0,
"errmsg": "ok",
“quota”:{
"daily_limit": 0,
"used": 0,
"remain": 0}
}
# 返回码说明
返回码 | errmsg | 说明 |
---|---|---|
0 | ok | 查询成功 |
76021 | cgi_path not found, please check | cgi_path填错了 |
76022 | could not use this cgi_path,no permission | 当前调用接口使用的token与api所属账号不符,详情可看注意事项的说明 |
其他错误码 | 请查看全局错误码 |