node-facebook-sdk icon indicating copy to clipboard operation
node-facebook-sdk copied to clipboard

Document Additional Parameters

Open mattlockyer opened this issue 12 years ago • 0 comments

Was wondering why limit and offset was not working...

You can't simply add to the url like so /.../feed?limit=2

You must use this syntax:

facebook.api('/.../feed', {limit:2}, function(data) { ... });

Also limit doesn't really seem to perform as expected, I get consistently less than the limit specified.

This may be an issue with fb itself trimming results before the response, as I've read on other pages.

mattlockyer avatar Aug 03 '13 23:08 mattlockyer