How to fetch more than 25 post messages

前端 未结 4 785

I\'m trying to get all post messages using restfb, my code is as follows

public Connection publicSearchMessages(Date fromDate, Date toDate) {
    Co         


        
4条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-14 18:36

    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...

提交回复
热议问题