I registered my application in tumblr and want to post data from my web page . I used below java-script,but is doesn't seems to work even i am getting success message
<script>
$.ajax({
type: 'Post',
url: "http://api.tumblr.com/v2/blog/xxx.tumblr.com/posts/text?notes_info=true",
dataType: 'jsonp',
data: {
api_key: "XYYYYYYY",
title: "Milky Dog",
body: "hi"
},
success: function (response) {
alert(JSON.stringify(response));
},
error: function (response) { alert(0); }
})
</script>