Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to load all notes on tumblr?

Tags:

python

tumblr

i made a giveaway but im having a problem to view the notes. there is no "load more notes" at the bottom. other posts are okay, but i'm not sure why my giveaway post (ONLY THAT POST) won't load all the notes.

i googled and found this --> How can I see all notes of a Tumblr post from Python?

one of the answers for the question made a new page with only the notes. (the one by user unor). i think the user used python or something but im not sure what is that and i tried changing my url to the one mentioned in the answer but nothing works. :( there's even wget command could download all notes pages for that post.

can someone help me? this is my post's url --> http://uri-hyukkie.tumblr.com/post/64967405021

thank you so so soooo much!

like image 961
user3002364 Avatar asked Oct 02 '22 10:10

user3002364


1 Answers

Your post already shows all notes (EDIT: but Tumblr probably blocked/deleted all the other ones).

The oldest note is always your own, so if you can see it, there are no other notes pages:

uri-hyukkie posted this

If you get more likes/reblogs, you will eventually reach the threshold. Only then you’ll see the "load more notes" link resp. the note pagination.


one of the answers for the question made a new page with only the notes. (the one by user unor). i think the user used python or something but im not sure what is that and i tried changing my url to the one mentioned in the answer but nothing works. :( there's even wget command could download all notes pages for that post.

I didn’t use Python or any other programming language. Simply deactivate JavaScript in your browser, then you’ll get the static notes page links. But, as I explained above, you’ll only see these if you have more notes.


I think I found them:

  • http://uri-hyukkie.tumblr.com/notes/64967405021/2nsoCKZ8N?from_c=1382900003
  • http://uri-hyukkie.tumblr.com/notes/64967405021/2nsoCKZ8N?from_c=1382759799
  • http://uri-hyukkie.tumblr.com/notes/64967405021/2nsoCKZ8N?from_c=1382645074

For me it doesn’t display the static link, but you can get the next URL by looking at the source code: the onclick attribute of the a element contains

[…] tumblrReq.open('GET','/notes/64967405021/2nsoCKZ8N?from_c=1382486492',true); […]

The /notes/64967405021/2nsoCKZ8N?from_c=1382486492 part is the URL path of the next page of notes.

Howto:

  1. open the source code of a notes page (in Firefox with Ctrl+u)
  2. search for /notes/ (in Firefox with Ctrfl+f)
  3. copy the whole string enclosed in the two ', beginning with /notes/ and ending with a number
  4. append this string at your Tumblr domain: http://uri-hyukkie.tumblr.com + paste the string
  5. open this page in your browser; and repeat
like image 83
unor Avatar answered Oct 05 '22 23:10

unor