2

我正在尝试将 POST 挂钩添加到 bitbucket 存储库,但每次尝试都会得到 404 个结果。

我正在做:

payload = {'type': 'POST', 'URL': announce_post_hook}
content_type = {"Content-Type": "application/json"}
request_url = 'https://api.bitbucket.org/1.0/repositories/{repo_owner}/{repo_slug}/services/'                       
request_url = request_url.format(repo_owner=repo_owner, remote_url=remote_url)
requests.post(request_url, auth=(repo_user, repo_pass), data=json.dumps(payload), headers=content_type)

我也尝试使用这个 URL:

https://bitbucket.org/api/1.0/repositories/{repo_owner}/{repo_slug}/services/

因为是在其 api 的不同部分中列出的那个(例如,我使用 api.bitbucket.org 而不是 bitbucket.org/api/ 来设置部署密钥)。

如果我尝试使用 curl 进行操作,如下所示:

curl -X POST -u user:pass https://api.bitbucket.org/1.0/repositories/repowner/reposlug/services/ --data "type=POST&URL=https://hooks.urladdress.com"

然后它会工作。但是尝试像在其他 api 调用中那样通过 python-requests 来做到这一点会失败......

有人知道发生了什么吗?它只会响应找不到资源,这似乎不正确(因为它通过 curl 工作)

发现这个问题有一个非常相似的问题,但那里没有答案......

4

1 回答 1

0

为了将来参考,如果其他人有同样的问题,显然这个特定的端点不接受 json 编码的数据。

所以请求需要是

requests.post(request_url, auth=(repo_user, repo_pass), data='type=POST&URL=hooks.url.com')
于 2015-04-16T18:39:45.160 回答