I\'m trying to get all post messages using restfb, my code is as follows
public Connection publicSearchMessages(Date fromDate, Date toDate) { Co
Maybe you can try using a loop. FB can't get more than 1000 each time, so you can use the loop to get the whole feeds. Use the offset like this:
Parameter.with("limit", 1000)); Parameter.with("offset", offset));
Offset will be a variable and its value will be 1000,2000,3000...