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
$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.