Я использую комментарии fb на своем веб-сайте, и мне нужно перенести количество комментариев в переменную php, чтобы я мог ими манипулировать. как мне это сделать? заранее спасибо.
Получить commentsbox_count из таблицы link_stat FQL, пример :
commentsbox_count
link_stat
select commentsbox_count from link_stat where url = 'http://techcrunch.com/2012/03/31/dramacrunch/'
Пример PHP:
$query = urlencode("select commentsbox_count from link_stat where url = 'http://techcrunch.com/2012/03/31/dramacrunch/'"); $response = json_decode(file_get_contents("https://graph.facebook.com/fql?q=$query"), TRUE); if(!empty($response['data'][0]['commentsbox_count'])) { echo $response['data'][0]['commentsbox_count'] . " comments were found!"; }