- 公众号配置服务器url报token验证失败?
我发现很多人遇到过类似问题,可是并没有很好的解答。我现在也碰到了类似的问题。 我的公众号wxcca50471fde16891 我的服务器https://service-qrrcrg0b-1302863908.bj.apigw.tencentcs.com/release/test 我使用的token是zpf7879jess322 我的Python代码: def main_handler(event, context): TOKEN='zpf7879jess322' data = event['queryString'] signature = data['signature'] timestamp = data['timestamp'] nonce = data["nonce"] echo = data["echostr"] if not signature or not timestamp or not nonce: return '' tmp_str = "".join(sorted([TOKEN, timestamp, nonce])) tmp_str = hashlib.sha1(tmp_str.encode('UTF-8')).hexdigest() if tmp_str == signature: return echo else: return '' 我用Postman模拟了测试,看到echostr已经正确返回了,可就是无法验证通过。 求助!
2020-12-17 - 获取Access Token失败?
公众号获取Access Token失败。尝试多次,始终是这个错误。 https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=<id>&secret=<secret> 错误信息: 200 OKConnection: closeDate: Tue, 15-Dec-2020 22:26:28 GMTContent-Type: application/json; encoding=utf-8Content-Length: 46{ "errcode": -1000, "errmsg": "system error" } 提示: 未知返回状态
2020-12-16