如何更新 Gist?

How do I update a Gist?

我想从另一个网站更新我的 Gist,我在该网站上使用我的 gist 令牌登录。我无法让它工作。我设法通过 GET 获得了要点,但无法使用 PATCH 更新要点。

我认为这不是身份验证的问题,因为在获取要点时,我的用户名和个人资料显示正确。

JavaScript (JQuery):

$.ajax({ 
  url: 'https://api.github.com/gists/e3e0b182c09bf333593c',
  type: 'PATCH',
  beforeSend: function(xhr) { 
    xhr.setRequestHeader("Authorization","token f32e-----MY-TOKEN-(GIST-ACCESS)-----6f44"); 
  }, data: {
    "description":"Edit gist",
    "files":{
      "annexation.json":{
        "content":"{\"updated content\":\"from Ajax\"}"
      }
    }
  }
}).done(function(response) {
  $('#write').text(JSON.stringify(response));
});

我不断收到错误 400(错误请求)。

回复:

{
  "message": "Problems parsing JSON",
  "documentation_url": "https://developer.github.com/v3/gists/#edit-a-gist"
}

有人可以指出我做错了什么吗?非常感谢。

好吧,经过一番摆弄,这一直是问题所在:

数据应该是一个字符串,而不是一个对象。

data: '{"description":"Edit gist","files":{"annexation.json":{"content":"{\"updated content\":\"from Ajax\"}"}}'