This questions gets asked a lot but I can't seem to find an answer anywhere.
What I want to do : Receive metrics and data of one of my websites from facebook insight via there API. What I did so far : The meta tag and everything is in place. I have read the docs. I can see some simple metrics on the insight dashboard like shares.
According to the facebook docs their api is available for pages, apps and domains. It works very well when ever I try to get data from an app (https://graph.facebook.com/324923697601554/insights) but every time I try that exact same thing with my domain id (given by the meta tag), all I get is an empty page that looks like this:
:{
"data": [
],
"paging": {
"previous": "https://graph.facebook.com/415793855145069/insights?access_token=...&since=1349198931&until=1349458131",
"next": "https://graph.facebook.com/415793855145069/insights?access_token=...&since=1349717331&until=1349976531"
}
}
I have already read the facebook docs but I can't figure the problem out.
Thanks.