I am having an issue when trying to return the total_count number for our Like buttons. Our application manages Like buttons and Open Graph tags, we have a few URLs we are trying to get the Like count for, but it is returning shares with no OG tag information.
For example: https://graph.facebook.com/?id=http://www.fruitilike.com/products/shares-debug6/
Returns:
{
"id": "http://www.fruitilike.com/products/shares-debug6/",
"shares": 1
}
Example of how it should work: https://graph.facebook.com/?id=http://www.fruitilike.com/products/apple
Returns:
{
"id": "114182628680532",
"name": "Apple",
"picture": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/187789_114182628680532_2291233_s.jpg",
"link": "http://www.fruitilike.com/products/apple",
"likes": 1,
"app_id": 102729306450470,
"category": "Food",
"is_published": true,
"description": "The Apple. When it falls from a tree it generates gravity.",
"about": "The Apple. When it falls from a tree it generates gravity."
}