Delete post with Blogger API
问题 I'm using the Blogger Protocol API and I'm having trouble deleting posts. I'm working on a webOS device and so I can't send DELETE directly; instead I use Google's workaround to use POST : deletePostList: function(event) { var deletePostID = event.item.id.split('.').pop().split('-').pop(); var deleteRequest = new Ajax.Request("http://www.blogger.com/feeds/" + activeBlogID + "/posts/default/" + deletePostID, { method: 'post', requestHeaders: { Authorization: 'GoogleLogin auth=' + authCode, "X