Я не думаю, что открытый объект графа Facebook, т. Е. "Og_object" предоставляет что-то большее, чем comment_count & share_count для URL.
Попробуй это; замените $ YOUR_URL URL-адресом, а $ ACCESS_TOKEN - токеном доступа по приведенной ниже ссылке.
https://graph.facebook.com/v2.5/$YOUR_URL?access_token=$ACCESS_TOKEN
Например:
https://graph.facebook.com/v2.5/http://espn.go.com/nfl/story/_/id/14424066/handing-holiday-gifts-all-32-nfl-teams-nfl?access_token=$ACCESS_TOKEN
{
og_object: {
id: "956517601094822",
description: "Naughty or nice, every NFL team deserves something for Christmas. So in lieu of Santa Claus, Bill Barnwell is here to distribute some gifts.",
title: "Barnwell: Handing out holiday gifts to all 32 teams",
type: "article",
updated_time: "2015-12-23T17:20:55+0000",
url: "http://espn.go.com/nfl/story/_/id/14424066"
},
share: {
comment_count: 0,
share_count: 354
},
id: "http://espn.go.com/nfl/story/_/id/14424066/handing-holiday-gifts-all-32-nfl-teams-nfl"
}
Кроме того, если вы попытаетесь получить лайки, вы получите следующую ошибку
https://graph.facebook.com/http://rottentomatoes.com?fields=likes&summary=1&access_token=$ACCESS_TOKEN
{
error: {
message: "(#100) Tried accessing nonexisting field (likes) on node type (URL)",
type: "OAuthException",
code: 100,
fbtrace_id: "H+KksDn+mCf"
}
}