我正在尝试使用 Google 提供的协议 API 更新 Blogger 帖子。我创建的新帖子工作得很好,但更新给我带来了问题。我有以下代码(Javascript):
postRequest = new Ajax.Request("http://www.blogger.com/feeds/" + activeBlogID + "/posts/default/" + activePostID,
{
method: 'put',
contentType: 'application/atom+xml',
postBody: postXML,
requestHeaders:
{
Authorization: 'GoogleLogin auth=' + authCode
},
onSuccess: this.postRequestSuccess.bind(this),
onFailure: this.postRequestFailure.bind(this)
});
但每次返回 400 Bad Request URI。据我所知,URI 是正确的(它与“编辑”链接元素中的那个相同(我已经检查过),我只是重新创建它,因为它比从 XML 中挖掘它更容易)。我没有看到任何问题,但也许我错过了一些东西。建议?