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.
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.
On Tuesday, April 24, 2012 5:31:38 PM UTC+2, Philipp Schlösser wrote:
> 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.
> On Thursday, August 4, 2011 5:30:03 PM UTC+2, Derek Gottfrid 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.
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.pe...@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
On Wednesday, April 25, 2012 3:41:02 PM UTC+2, John Bunting wrote:
> 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.pe...@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
I've seem to run into a similar problem lately, I'm using this PHP library<https://groups.google.com/forum/?fromgroups=#!topic/tumblr-api/g6SeIB...>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:
// 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.
On Wednesday, April 25, 2012 9:48:09 AM UTC-6, Philipp Schlösser wrote:
> You are correct, I thought that it was supposed to be a POST request > (which also works for the other variables - strange), my bad.
> On Wednesday, April 25, 2012 3:41:02 PM UTC+2, John Bunting wrote:
>> 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<javascript:>
>> > 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
On Mon, Jan 7, 2013 at 8:58 PM, interwound <ashwala...@gmail.com> wrote:
> I've seem to run into a similar problem lately, I'm using this PHP library<https://groups.google.com/forum/?fromgroups=#!topic/tumblr-api/g6SeIB...>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:
> // 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
> On Wednesday, April 25, 2012 9:48:09 AM UTC-6, Philipp Schlösser wrote:
>> You are correct, I thought that it was supposed to be a POST request
>> (which also works for the other variables - strange), my bad.
>> On Wednesday, April 25, 2012 3:41:02 PM UTC+2, John Bunting wrote:
>>> 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
-- John Bunting
Simplicity is prerequisite for reliability
--Edsger W. Dijkstra
On Mon, Jan 7, 2013 at 7:04 PM, John Bunting <jo...@tumblr.com> wrote:
> 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>
> Is it only some posts or all posts for the request?
> On Mon, Jan 7, 2013 at 8:58 PM, interwound <ashwala...@gmail.com> wrote:
>> I've seem to run into a similar problem lately, I'm using this PHP
>> library<https://groups.google.com/forum/?fromgroups=#!topic/tumblr-api/g6SeIB...>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:
>> // 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
>> On Wednesday, April 25, 2012 9:48:09 AM UTC-6, Philipp Schlösser wrote:
>>> You are correct, I thought that it was supposed to be a POST request
>>> (which also works for the other variables - strange), my bad.
>>> On Wednesday, April 25, 2012 3:41:02 PM UTC+2, John Bunting wrote:
>>>> 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
> --
> John Bunting
> Simplicity is prerequisite for reliability
> --Edsger W. Dijkstra