我想用API编辑GitHub问题的正文。我正在使用python应用程序和请求库。
url = "https://GHE_server.company_name.com/api/v3/repos/org_name/repo_name/issues/1/"
payload = {
"title": "New title"
}
response = requests.patch(url, json=payload, headers={}, auth=(_USERNAME_, _TOKEN_), verify=_CA_CERT_)
我得到答复:
{'message': 'Not Found', 'documentation_url': 'https://developer.github.com/enterprise/2.13/v3'}
我查看了This Answer,这使我将有效负载更改为= json副数据。但我仍然碰壁。任何帮助将不胜感激。
答案 0 :(得分:0)
URL中的尾部反斜杠导致访问无效页面。删除斜杠可解决此问题。