curl-如何发布清单

时间:2019-03-29 06:48:16

标签: curl github github-api

我正在尝试使用curl创建GHE

我要创建一个具有预定义标题和问题描述的问题 问题说明采用以下清单格式。

- [] Point 1
- [] Point 2
- [] Point 3

我试图将以上内容保留在文件template.txt中 然后

content=$(cat template.txt)
curl -u $ghbtoken:x-oauth-basic -X POST -d "{\"title\": \"TITLE\", \"body\": \"$content \" }" "https://api.github.com/repos/ambiknai/s3fs-fuse/issues"
{
  "message": "Problems parsing JSON",
  "documentation_url": "https://developer.github.com/v3/issues/#create-an-issue"
}

0 个答案:

没有答案