Hi,
I have filled aout all necessary fileds inside facebook-insights.php and try to get the page impressions by calling
//Get Facebook Inisghts
public function getPageImpressions() {
$startDate = new \DateTime('2017-01-01');
$endDate = new \DateTime('2017-03-26');
// fetch your page's total impressions for a given period
$totalImpressions = FacebookInsights::getPageTotalImpressions($startDate, $endDate);
return $totalImpressions;
}
Unfortunately I receive "0". I know that this value is wrong, as facebook insights shows a different number. I have no idea what's wrong here
Hi, I have filled aout all necessary fileds inside facebook-insights.php and try to get the page impressions by calling
//Get Facebook Inisghts public function getPageImpressions() { $startDate = new \DateTime('2017-01-01'); $endDate = new \DateTime('2017-03-26'); // fetch your page's total impressions for a given period $totalImpressions = FacebookInsights::getPageTotalImpressions($startDate, $endDate); return $totalImpressions; }
Unfortunately I receive "0". I know that this value is wrong, as facebook insights shows a different number. I have no idea what's wrong here