Example
cURL
curl \
-H 'authorization: Bearer YOUR_API_TOKEN' \
'https://public-api.wordpress.com/rest/v1/sites/en.blog.wordpress.com/posts/7/likes/mine/?pretty=1'
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/sites/en.blog.wordpress.com/posts/7/likes/mine/?pretty=1',
false,
$context
);
$response = json_decode( $response );
?>
Response Body
{
"i_like": false,
"like_count": 4,
"meta": {
"links": {
"help": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/3584907\/posts\/7\/likes\/mine\/help",
"post": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/3584907\/posts\/7",
"site": "https:\/\/public-api.wordpress.com\/rest\/v1\/sites\/3584907"
}
}
}