我想查找日期範圍內的不同頁面的喜歡頁面。我嘗試了不同的方法,比如page_fans_country/lifetime,但我不認爲這是正確的API調用來獲取此信息。對於特定的日期範圍的Facebook頁面不喜歡的頁面
現在我能夠知道目前頁面的喜歡,但我想知道過去15天內的某個頁面的喜歡。
$app_result = file_get_contents('https://graph.facebook.com/oauth/access_token?client_id=[APP_ID]&client_secret=[APP_SECRET]&grant_type=client_credentials');
$access_token = trim(str_replace("access_token=","",$app_result));
$result = file_get_contents('https://graph.facebook.com/'.$fb_page_link.'?access_token='.$access_token);
$data = json_decode($result,true);
任何一個人都可以指向正確的方向來獲取此信息。
旁註:應用程序ID和祕密是私人使用..不公開發布.. –
我很抱歉,我忘了發佈時。任何方式你可以幫我 –