node-facebook-sdk
node-facebook-sdk copied to clipboard
Document Additional Parameters
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.