reblog_info and notes_info not working on /user/dashboard

334 views
Skip to first unread message

TGarrood

unread,
Jul 31, 2011, 7:42:48 PM7/31/11
to Tumblr API Discussion
Is anyone able to to get reblog_info and notes_info to work with /user/
dashboard calls? I'm getting a response but the post objects don't
contain any notes or reblog info. Other params for /user/dashboard are
working (eg type, limit, since_id). I've also got reblog_info and
notes_info working on working on /blog/posts. However, not matter what
I try I can't seem to get reblog or notes data via the dashboard.

I've tried:
reblog_info = true
reblog_info = True
reblog_info = 1
rebloginfo = true

But to no avail!

Derek Gottfrid

unread,
Aug 4, 2011, 11:30:03 AM8/4/11
to tumbl...@googlegroups.com
This was a bug and is now fixed. 

thanks, 
d

--
api lead // tumblr 

Phlibbo

unread,
Apr 24, 2012, 11:31:38 AM4/24/12
to tumbl...@googlegroups.com
As far as I can tell, this is still (or probably again) not working. When I'm querying a tumblelog, everything works fine but for the user's dashboard, I don't receive any reblog-information.

Philipp Schlösser

unread,
Apr 24, 2012, 11:37:31 AM4/24/12
to tumbl...@googlegroups.com
I should add that it works for your dashboard when you add reblog_info=true as a GET-parameter. As a POST-parameter however, it doesn't...

Steven Pears

unread,
Apr 25, 2012, 2:12:31 AM4/25/12
to tumbl...@googlegroups.com
If the re-blog information works as a GET parameter, why can you not use a GET request for the dashboard? I've always retrieved dashboard calls with a GET and my app is bringing back the details for a lot of users with no trouble.
 
Steven

John Bunting

unread,
Apr 25, 2012, 9:41:02 AM4/25/12
to tumbl...@googlegroups.com
Right, docs say if you're making a request for a user's dashboard, it's an OAuth'ed GET request.

Thanks!


On Wed, Apr 25, 2012 at 2:12 AM, Steven Pears <steven...@live.co.uk> wrote:
If the re-blog information works as a GET parameter, why can you not use a GET request for the dashboard? I've always retrieved dashboard calls with a GET and my app is bringing back the details for a lot of users with no trouble.
 
Steven



--
John Bunting

Simplicity is prerequisite for reliability
    --Edsger W. Dijkstra


Philipp Schlösser

unread,
Apr 25, 2012, 11:48:09 AM4/25/12
to tumbl...@googlegroups.com
You are correct, I thought that it was supposed to be a POST request (which also works for the other variables - strange), my bad.

interwound

unread,
Jan 7, 2013, 8:58:33 PM1/7/13
to tumbl...@googlegroups.com
I've seem to run into a similar problem lately, I'm using this PHP library and can't seem to get notes_info to display correctly. Other variables change as previously noted (e.g. limit) but I can never seem to get note metadata or reblog metadata to return. Relevant code:

   $arrayOfParamaters = array('notes_info' => true,'limit' => 2);

    $userinfo = $tum_oauth->get('http://api.tumblr.com/v2/user/dashboard', $arrayOfParamaters);

    // Check for an error.
    if (200 == $tum_oauth->http_code) {
      // good to go
    } else {
      die('Unable to get info');
    }
    print_r($userinfo->response->posts[0]->notes);
    // Undefined property notes also doesn't appear on full print_r of json.
Cheers

John Bunting

unread,
Jan 7, 2013, 9:04:29 PM1/7/13
to tumbl...@googlegroups.com
I'm assuming you get everything BUT the note information you're expecting? It should be an array of hashes:

URL should be: /v2/user/dashboard?notes_info=true&limit=<number>

eg:
"notes"=>[{"timestamp"=>"1357610323", "blog_name"=>"petervidani", "blog_url"=>"http://blog.petervidani.com/", "type"=>"reply", "reply_text"=>":("}]

Is it only some posts or all posts for the request?

Adam Ashwal

unread,
Jan 7, 2013, 9:42:58 PM1/7/13
to tumbl...@googlegroups.com
Ya, I'm getting everything but the note information I want. And all the posts do not return the note information. 
Reply all
Reply to author
Forward
0 new messages