我用Python来处理钉钉的接口
现在遇到一个问题,get请求都是能用的,post数据就会报500错误
这个可以说是没什么有歧义的地方了,post只有一个参数
url = 'https://oapi.dingtalk.com/topapi/process/gettodonum?access_token=%s' % access_token
data = {
"userid": "manager4012"
}
headers = {
'Content-Type': 'application/json'
}
r = requests.post(url, data=json.dumps(data), headers=headers)
print(r.text)
报错:
500 Internal Server Error500 Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
headers utf-8也指定了,json字符串也转换了
想不懂为什么会报错,完全没有理由500错误