jonasva / laravel-facebook-insights

Facebook insights package for Laravel
26 stars 4 forks source link

Wrong number for pageImpressions #8

Open mamulasa opened 7 years ago

mamulasa commented 7 years ago

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