Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
What does the smaller file contain, I'm guessing an error message? – Colm Doyle Dec 16 '12 at 16:50
Nop, the file has the result i need but much less than what gets returned when i run the script from Chrome. There are no error message and the script runs to completion - ie: creating the text file as the last step. I also noticed running the script in Safari give the same fewer results.. Could this have something to do with environment variables? – Luke Zammit Dec 16 '12 at 17:48
Does the text file end cleanly or does it look like it gets cut off mid response? – Colm Doyle Dec 16 '12 at 19:53
It looks like it gets cut off quite clean i would say. So i wouldn't think it has something to do with any timers ect. The strange thing is the data i am receiving is not for example the latest posts from Facebook but starting from a particular point. – Luke Zammit Dec 16 '12 at 20:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.