GitHub API AJAX POST返回422

时间:2016-07-25 17:48:02

标签: json ajax api github-api

我正在尝试通过GitHub API发布问题并继续收到422错误。在过去的几天里,我尝试了各种方法,没有运气 - 我希望这是一个很快就能发现的错误?

我的电话如下 - 我正在使用我的个人访问令牌进行授权。

$.ajax({
      type: "POST",
      url: `https://api.github.com/repos/MYUSERNAME/MYREPONAME/issues?access_token=MYACCESSTOKEN`,
      contentType: "application/json",
      dataType: "json",
      data: JSON.stringify({
        "title": "Found a bug",
        "body": "I'm having a problem with this."
      })
    }).done(function( data ) {
        console.log( data );
      });

提前致谢。

1 个答案:

答案 0 :(得分:2)

FYI终于使用下面的代码来POST到GitHub API(创建一个问题):

$.ajax({
      url: 'https://api.github.com/repos/USERNAME/REPONAME/issues',
      type: 'POST',
      dataType: 'json',
      headers: {
        Authorization: 'token MY_PERSONAL_TOKEN'
      },
      data: JSON.stringify({
        "title": "Found a bug",
        "description": "Bug description"
      }),
      success: function (response) {
        console.log(response);
      }
    });