I am using the Tumblr api v2 with php, it's work but this code :
<?php
require 'vendor/autoload.php';
// Authenticate via OAuth
$client = new Tumblr\API\Client(
'my',
'key',
'is',
'good'
);
// Make the request
$post=$client->getUserInfo();
echo(json_encode($post));
?>
would be like this (https://api.tumblr.com/console)
{
"meta": {
"status": 200,
"msg": "OK"
},
"response": { ... }
}
and I've got the response part only with no meta :
{"user":{"name":"my name","likes":0,… }}
How can I get the meta ? I try $post->meta and $client->meta but this is stupid tests…