I'm trying to write a cronjob which will run on a server whose job is to fetch data from facebook using the api and create a text file with the results.
I've written my script in php which at the core looks like this:
`$facebook = new Facebook(array( 'appId' => 'xxxxxx', 'secret' => 'xxxxxx', ));
$link = '/' . $user . "/feed/";
$result = $facebook->api($link, array('access_token' =>
$facebook->access_token,'limit'=>5000));
$rawData = array(); //this array stores all the
//information captured from the user
// before it is written to disk
foreach($result['data'] as $post)
{
if ($post['message'] == null)
{
//If message is null - do nothing
}
else
{ `
Now the file works perfectly when executed on my browser and a text file of 118KB is created. However when i run the SAME EXACT script from command line.. The file created is only around 10KB - meaning for some strange reason not all the data is being returned. Any ideas why?
Thanks