2

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>
tshepang
  • 12,111
  • 21
  • 91
  • 136
Shailesh
  • 492
  • 3
  • 9
  • 27

1 Answers1

1

I found one alternate solution for It. Tumblr provide one unique email id for each user profile,I just e-mail my content to that unique ID and my post host on tumblr easily .

Go to setting Page and then ,click on last tab in navigation widget and check "Post by Email" .

Shailesh
  • 492
  • 3
  • 9
  • 27