收藏
回答

遇到一个bug

appid我传了但是还是报{"errcode":41002,"errmsg":"appid missing rid: 65d18a29-198644ab-6e38456f"},我的代码:
import requests

'''
清空接口使用次数
'''

# 获取access_token


data = {
    'grant_type': 'xxx',
    "appid": 'xxx',
    'secret': 'xxx'
}

response = requests.post(
    'https://api.weixin.qq.com/cgi-bin/stable_token', data=data
)
print(response.text)


最后一次编辑于  02-18
回答关注问题邀请回答
收藏

3 个回答

  • 社区技术运营专员-Jahozheng
    社区技术运营专员-Jahozheng
    02-19

    你请求包格式是这样的grant_type=xxx&appid=xxx&secret=xxx

    02-19
    有用
    回复
  • Mr.Zhao
    Mr.Zhao
    02-18
    data=data 改成 json=data
    
    02-18
    有用
    回复
  • showms
    showms
    02-18

    content-type是application/json吗

    02-18
    有用
    回复
登录 后发表内容