【发布时间】:2020-08-25 23:59:28
【问题描述】:
我正在尝试使用 Windows CURL 命令在 Bitbucket 中创建问题,但它不起作用,我收到以下错误消息:
{"type": "error", "error": {"message": "No import job started"}}
我的命令 CURL:
curl -u username:password -X GET https://api.bitbucket.org/2.0/repositories/name/name2/issues/import -H "Content-Type: application/json" --data @data.jsonson
我正在尝试以 JSON 格式发送以下结果:
{
"title": "title"
}
但它不起作用。
有人知道我可以如何创建问题吗?
【问题讨论】:
标签: json api curl bitbucket issue-tracking