PHP
<?php
$options = array (
'http' =>
array (
'ignore_errors' => true,
'header' =>
array (
0 => 'authorization: Bearer YOUR_API_TOKEN',
),
),
);
$context = stream_context_create( $options );
$response = file_get_contents(
'https://public-api.wordpress.com/rest/v1/me/likes/?pretty=1',
false,
$context
);
$response = json_decode( $response );
?>
Response Body
{
found: 2,
likes: [
{
"site_id" : 1559158,
"post_id" : 238,
"meta" : {
"links" : {
"self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/1559158\/posts\/likes\/mine\/",
"help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/1559158\/posts\/238\/help",
"site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/1559158",
"likes": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/1559158\/posts\/238\/likes\/"
}
}
},
{
"site_id" : 2349158,
"post_id" : 438,
"meta" : {
"links" : {
"self": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/2349158\/posts\/likes\/mine\/",
"help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/2349158\/posts\/438\/help",
"site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/2349158",
"likes": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/2349158\/posts\/438\/likes\/"
}
}
}
]
}