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.
@graph = Koala::Facebook::API.new($access_token)

The query below just return latest 100 statuses of certain user instead of all statuses

@graph.fql_query("SELECT status_id, message FROM status WHERE uid='user_id'")

What is happening? Anyone can guide me if I'm doing something wrong.

Awaiting

share|improve this question

1 Answer

Facebook is pretty stingy with the data it returns, unless you ask for more.

Try adding LIMIT 200 to the end of your query and see if that gives you more. I don't think any table will ever return more than 5000 rows, some tables return far fewer.

If that doesn't work, you may need to make multiple queries, with LIMIT 100 OFFSET _n_, where _n_ would be 101, 201, 301, etc. for a LIMIT of 100.

share|improve this answer
Limit does not work, anyhow Offest worked but will you tell me how to make multiple queries? do you asking me to loop it? or something else? I want to get all statuses made by certain user and need optimized query. Thanks – Taimoor Changaiz Feb 8 at 22:34
1  
Either make multiple API calls or create an FQL multiquery. – cpilko Feb 9 at 1:57
I up-voted your answer as you showed me the path to do and there is need of some effort to get it done. Thanks @cpilko – Taimoor Changaiz Feb 11 at 8:50

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.