Я пытаюсь добавить комментарий к запросу на вытягивание bitbucket через REST API. Ответ, который я получаю, всегда 404
Сначала я попробовал с библиотекой запросов Python, затем команда curl
#python code
link = 'https://<base-url>/2.0/repositories/<project_name>/views_source/pullrequests/<pull-request-id>/comments'
r = requests.post(link, verify=False)
#windows command
curl -X POST -d "{\"text\" : \"test comment\"}" https://<base-url>/2.0/repositories/<project_name>/views_source/pullrequests/<pull-request-id>/comments
Я получаю следующую ошибку: -
part of python output:
<h2>Oops, you've found a dead link</h2>
curl output
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><status><status-code>404</status-code><message>null for uri: https://<base-url>/rest/api/1.0/repositories/<repo-name>/views_source/<comment-id>/comments</message></status>