I am using the following to get friends via my Android app
Bundle params = new Bundle();
params.putString("fields", "id,name,birthday");
Utility.mAsyncRunner.request("me/friends", params, new EventsRequestListener());
I have been looking over the docs and cannot find any details about how many friends will be returned. Can I pass in a limit parameter such as 500? or this standard across all the api calls?