We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在get_access_token函数中,建议对获取到的token进行处理,data = json.loads(r.text),经常会出现如下的情况 if(data['errcode']==40013): print("填入的appid有误", data['errmsg']) if(data['errcode']==40125): print("填入的appsecret有误", data['errmsg']) if (data['errcode'] == 40164): print("你的IP不在白名单中", data['errmsg'])
The text was updated successfully, but these errors were encountered:
已经添加了打印错误日志的相关功能,感谢您的建议!^_^
Sorry, something went wrong.
No branches or pull requests
在get_access_token函数中,建议对获取到的token进行处理,data = json.loads(r.text),经常会出现如下的情况
if(data['errcode']==40013):
print("填入的appid有误", data['errmsg'])
if(data['errcode']==40125):
print("填入的appsecret有误", data['errmsg'])
if (data['errcode'] == 40164):
print("你的IP不在白名单中", data['errmsg'])
The text was updated successfully, but these errors were encountered: