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.

So far I have read most of the tutorials about querying Facebook Graph with Koala and they helped me a lot. Though, I am not fully satisfied with results Koala provides. From what I've seen, there is a lack of shared statuses/links/images when fetching user's public stream:

@graph.get_connections("username", "feed", { :since => @date, :limit => 1000})

and a lack of posts by others when fetching fanpage's stream:

@graph.get_connections("fanpagename", "feed", { :since => @date, :limit => 1000}).

Is there any way around here ? What should I give to get_connections function to get as many results as possible (this is my main benchmark) ? So far I've tried with posts, feed and statuses - and feed gives the best results in my opinion.

share|improve this question

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.