0

我正在尝试使用 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 中挖掘它更容易)。我没有看到任何问题,但也许我错过了一些东西。建议?

4

1 回答 1

0

自己解决了。该问题实际上与网络上的 HTTP 被阻止的“PUT”有关。使用 Google 在文档中建议的解决方法,使用“POST”使其工作。

于 2011-02-07T15:26:37.420 回答