Running
FB.api('/me/inbox', {limit:800}, function(response){ console.log(response)});
logs
data: Array[50]
summary: Object
to the console, clearly only 50 messages. Setting the limit to a less high value, say 51, produces the same result.
How can this be solved?
I have already looked at pagination (http://stackoverflow.com/questions/5023757/how-does-paging-in-facebook-javascript-api-works) , but as it seems, no pagination data is returned when I run this request.