我能够为 Tumblr 博客执行 GET 方法,但每当我尝试为 Tumblr 执行 POST 方法时,我都会收到错误消息:
({"meta":{"status":401,"msg":"Not Authorized"},"response":[]});
我正在为 Ajax Post 使用以下代码::
$.ajax({
type: 'POST',
url: 'https://api.tumblr.com/v2/blog/firstblgpsa.tumblr.com/post',
dataType: "jsonp",
data: {
api_key: "*key here*",
type: 'text',
title: 'First_Post',
body:'This is My First Post to Tumblr.'
},
success:function(){
alert("Blog Posted Successfully!!");
}
})