获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
import json import requests url = "https://api.q.qq.com/api/json/security/MsgSecCheck" headers = { "Content-Type": "application/json", } data = { "access_token": "***", "appid": "****", "content": "hello world!", } resp = requests.post(url, headers=headers, data=json.dumps(data)) print(resp.content.decode("utf-8"))
QQ小程序在审核的时候出现《校验调用内容安全接口失敗》?您们好! 实属无奈,QQ小程序没有地方反馈,想来这里问问各位有没有遇到这个问题 今天我发布的审核的时候弹出一个框框,说我《校验调用内容安全接口失敗》,但其实我是用了微信的api呀,而且就算我有没有人他没有测试怎么知道呀,~~~~~~~~~~~~~~~~~~~~[图片],请问有用过qq小程序的大佬知道怎么解决吗?谢谢。
2020-03-05