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!!");
}
})