请问一下,为什么使用requests库中的patch方法,代码跟老师一样,却提示400:Problems parsing JSON
{ "documentation_url": "https://developer.github.com/v3", "message": "Problems parsing JSON" } {'User-Agent': 'python-requests/2.12.3', 'Accept': '*/*', 'Connection': 'keep-alive', 'Accept-Encoding': 'gzip, deflate', 'Authorization': 'Basic aW1vb2NkZW1vOmltb29jZGVtbzEyMw=='} None 400
试过了各种方式调整JSON,却一直提示400,包括requests.patch(xxx,auth=(xx,xx),json=xxxx) 以及requests.patch(xxx,auth=(xx,xx),data=json.dumps(xxxx)) 都始终提示JSON有问题,请问究竟是什么原因