我们正在托管GitHub企业以进行开发。我能够访问reset api并创建jira,PR等。
当我try to add label进入PR时,它会给出数组错误。
curl -X POST -u githuser:gittoken https://api.github.mycompany.com/repos/team/repo/issues/560/labels -H "Content-type: application/json" -k -d '{"labels": ["bug"]}' -H "Accept: application/json"
{
"message": "Invalid request.\n\nFor 'links/2/schema', {\"labels\"=>[\"bug\"]} is not an array.",
"documentation_url": "https://developer.github.com/enterprise/2.13/v3/issues/labels/#add-labels-to-an-issue"
}
我检查,bug
是有效标签。
curl -u githuser:gittoken -X GET \
https://api.github.mycompany.com/repos/team/repo/labels
[
{
"id": 163461,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/+1",
"name": "+1",
"color": "c2e0c6",
"default": false
},
{
"id": 382069,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/Blocked",
"name": "Blocked",
"color": "fbca04",
"default": false
},
{
"id": 163462,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/Changes%20Requested",
"name": "Changes Requested",
"color": "cc317c",
"default": false
},
{
"id": 404926,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/Release%20Review",
"name": "Release Review",
"color": "5319e7",
"default": false
},
{
"id": 228780,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/Review%20Pass",
"name": "Review Pass",
"color": "009800",
"default": false
},
{
"id": 228781,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/Review%20Requested",
"name": "Review Requested",
"color": "eb6420",
"default": false
},
{
"id": 426113,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/Staging%20Bug",
"name": "Staging Bug",
"color": "d6021a",
"default": false
},
{
"id": 163457,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/bug",
"name": "bug",
"color": "fc2929",
"default": true
},
{
"id": 163458,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/duplicate",
"name": "duplicate",
"color": "cccccc",
"default": true
},
{
"id": 163459,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/enhancement",
"name": "enhancement",
"color": "84b6eb",
"default": true
},
{
"id": 163460,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/help%20wanted",
"name": "help wanted",
"color": "159818",
"default": true
},
{
"id": 163463,
"url": "https://github.mycompany.com/api/v3/repos/team/repo/labels/wontfix",
"name": "wontfix",
"color": "ffffff",
"default": true
}
]
我尝试了其他组合,例如仅字符串,带逗号的字符串等。但是它具有相同的错误。
答案 0 :(得分:0)
它与
一起使用curl -X POST -u githuser:gittoken \
https://api.github.mycompany.com/repos/team/repo/issues/560/labels \
-H "Content-type: application/json" -k \
-d '["bug"]' \
-H "Accept: application/json"
我关注的https://developer.github.com/v3/issues/labels/#add-labels-to-an-issue文档的示例为
{
"labels": ["bug", "enhancement"]
}
但是还有另一个Enterprise
文档https://developer.github.com/enterprise/2.13/v3/issues/labels/#add-labels-to-an-issue,它表明它应该只是["bug"]
而不是字典。