Can I find a list of subscribers or follow Tumblr using the API or other ways?

The Tumblr API supports basic reading of content, but I have not yet found a way to get either a list of subscribers or a list of people you follow. The API seems to only return the number of followers. The documentation contains a block that can show who you are following, which is closest to what I want.

My question is: given the user's email address and password, is there any way to find any of these lists? You may need some background work.

+6
api tumblr
source share
4 answers

To answer my own question:

While this was not possible with the Tumblr API earlier, the new release of API v2 now supports both types of information.

/followers and /user/following are the appropriate commands. They return JSON objects that list blogs that follow the user or what the user follows. They also seem to require OAUTH access, as this is not publicly available information.

+7
source share

I am looking for the same thing, and one idea I came up with is a specific Tumblr user to create a custom page with the following settings and code.

  • Page URL: _____. tumblr.com/ following.json
  • Page Type: Custom Layout
  • Show link to this page: not checked

Custom HTML:

 {block:Following}[ {block:Followed} { "name": "{FollowedName}", "title": "{FollowedTitle}", "url" : "{FollowedURL}", "portrait": { "16": "{FollowedPortraitURL-16}", "24": "{FollowedPortraitURL-24}", "30": "{FollowedPortraitURL-30}", "40": "{FollowedPortraitURL-40}", "48": "{FollowedPortraitURL-48}", "64": "{FollowedPortraitURL-64}", "96": "{FollowedPortraitURL-96}", "128": "{FollowedPortraitURL-128}" } }, {/block:Followed} {} ] {/block:Following} 

So I'm just going to visit, i.e. http://arvn.tumblr.com/following.json But I'm still looking for other alternatives.

+5
source share

The only way I could think of is to clear the content from Tumblr.com using a kind of script that knew where to look for the names.

This is not ideal, because if Tumblr changes its code, then your system crashes, but I hope this is a little better than not having it at all. If the API says this does not exist, I don’t think there is any way to do it otherwise.

You can email support@tumblr.com and request it. Who knows, maybe you will get your desire. They are really good people.

0
source share

I just found BlogOnAuto and it is so amazing. Tumblr has never been so easy. I used to feel that Tumblr was taking a long time. I was a bit demotivated due to bad results, having spent a lot of time on Tumblr. Then I started looking for a tool that could help me with my busy schedule, and I found BlogOnAuto to be the simplest but most valuable asset of my successful Tumblr account.

0
source share

All Articles