Github创建评论api不起作用

时间:2014-10-05 06:01:11

标签: github github-api

我正在查看此处引用的github创建评论API - https://developer.github.com/v3/pulls/comments/#create-a-comment

根据API,如果我在https://api.github.com/repos/govin/log4js-node/pulls/1/comments进行GET,我会收到一系列评论。

但是,当我在https://api.github.com/repos/govin/log4js-node/pulls/1/comments进行POST时,响应为404。

1 个答案:

答案 0 :(得分:1)

请记住:

  • POST需要正确的身份验证,如GitHub POST tutorial所示 没有认证意味着404。

    curl --user "caspyin" --request POST --data {...}
    
  • 您需要“Create a comment

    中提到的正确数据
    {
      "body": "Nice change",
      "commit_id": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
      "path": "file1.txt",
      "position": 4
    }