我正在尝试使用以下方法在Bitbucket Cloud存储库上启用管道:
curl -X PUT https://api.bitbucket.org/2.0/repositories/<team>/<repo_slug>/pipelines_config -H 'Authorization: Basic ******' -H 'Content-Type: application/json' -d '{"enabled": true}
但是我收到HTTP 404代码的错误:
{
"error": {
"message": "Not found",
"detail": "Account {********} does not exist.",
"data": {"key": "account-service.account.not-found",
"arguments": {
"uuid": "{********}"}
}
}
}
我在https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pipelines_config阅读了API文档,并尝试了在Configuring a bitbucket repository to "activate" pipelines提出的解决方案,但是我仍然遇到相同的错误。
经过身份验证的用户对存储库具有管理员权限。
我在做什么错了?