How to get all messages using tumblr API or Tumblr Rss feed

I need to get all the posts from the tumblr blog. For example, there is a way for Wordpress, for example: blogRssUrl/paged={1} , we can load all the rss feeds on the pages from the Wordpress blog.

Is there something similar for tumblr?

+4
source share
2 answers

You can put this code in your html or php.

 <script type="text/javascript" src="http://YourTumblrName.tumblr.com/js"></script> 

It displays the contents of your tumblr on the page, but not very flexible. I'm still trying to get dates and tags. And the image quality is not as good as in Tumblr ...

+1
source

Use XML or JSON and Tumblr API V1

XML: http://yourtumblr.tumblr.com/api/read/

JSON: http://yourtumblr.tumblr.com/api/read/json

Otherwise, a WP plugin is possible that can handle all the processes for you: Example WP plugin

+1
source

Source: https://habr.com/ru/post/1444540/


All Articles