Reputation: 191
I'm trying to get share count for link shared in Facebook during certain period of time. The links are all links to my website. I'm thinking of using the Facebook Graph API - insights, do daily checking and save the share count.
From graph explorer I get the insights/domain_stories result and it has this:
"values": [
{
"value": 0,
"end_time": "2015-03-21T07:00:00+0000"
},
Reading at the metric description I thought I would get detail like which page in my website that's been shared.
https://developers.facebook.com/docs/graph-api/reference/v2.3/insights#availmetrics
Is there any way to get that kind of information?
Upvotes: 0
Views: 154
Reputation: 31479
No, unfortunately the /?id={url}
endpoint doesn't provide time period data.
See
Upvotes: 0