curl api.github.com发布版本JSON问题

时间:2017-08-16 06:54:31

标签: json curl github-api

非常重要,github api告诉我我的JSON不正确。

{
    "tag_name":"v1.1.32-3",
    "target_commitish":"develop",
    "name":"v1.1.32-3",
    "body":"Checkout the latest commit for details!",
    "draft":false,
    "prerelease":true
}

我通过JSON验证程序运行它,它说JSON是有效的。 我看过了; How to create and publish a Release using GitHub API v3 with curl?

我正在使用

curl -H "Authorization: token blah" 
     -H "Content-Type: application/json"
     -H "Accept: application/vnd.github.v3+json"
     https://api.github.com/repos/$username/$projectName/releases
     -d '(JSON ABOVE)'

无论我如何更改JSON,我似乎无法更改github的响应。我正在使用它来自动化一些发布,并且我已经完成了大约60次试图使这个工作没有任何成功的迭代。

我在这里创建了OAUTH令牌:https://github.com/settings/tokens

出于恼怒,我给了OAUTH令牌我正在使用除PGP权限之外的所有可用权限。

以下是我试过的第一台机器的CURL版本:

curl 7.52.1 (x86_64-pc-linux-gnu) libcurl/7.52.1 OpenSSL/1.0.2l zlib/1.2.8 libidn2/0.16 libpsl/0.17.0 (+libidn2/0.16) libssh2/1.7.0 nghttp2/1.18.1 librtmp/2.3

Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp scp sftp smb smbs smtp smtps telnet tftp 

Features: AsynchDNS IDN IPv6 Largefile GSS-API Kerberos SPNEGO NTLM NTLM_WB SSL libz TLS-SRP HTTP2 UnixSockets HTTPS-proxy PSL

Annnndddd第二台机器

curl 7.54.1 (x86_64-unknown-linux-gnu) libcurl/7.54.1 OpenSSL/1.1.0f zlib/1.2.11 libpsl/0.17.0 (+libicu/59.1) libssh2/1.8.0 nghttp2/1.23.1

Release-Date: 2017-06-14

Protocols: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp scp sftp smb smbs smtp smtps telnet tftp 

Features: AsynchDNS IPv6 Largefile GSS-API Kerberos SPNEGO NTLM NTLM_WB SSL libz TLS-SRP HTTP2 UnixSockets HTTPS-proxy PSL

1 个答案:

答案 0 :(得分:1)

我的用例是使用它来自动化Jenkins的一些发布内容,因为我花了大约6个小时使用CURL并且无法使其工作,我设法安装https://github.com/aktau/github-release并且它工作得很好。我要继续把它标记为已解决......