gpt4 book ai didi

java - 如何获取超过 25 条帖子消息

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:20:59 24 4
gpt4 key购买 nike

我正在尝试使用restfb 获取所有post 消息,我的代码如下

public Connection<Post> publicSearchMessages(Date fromDate, Date toDate) {
Connection<Post> messages = publicFbClient.fetchConnection("search",
Post.class,
Parameter.with("q", "Watermelon"),
Parameter.with("since", fromDate),
Parameter.with("until", toDate),
Parameter.with("type", "post"));

return messages;
}

这仅提供最新的 25 条帖子消息。

Parameter.with("limit",100 )

如果我设置限制参数,它会提供 100 条消息,但我不想限制为获取帖子消息。所以,

我是否可以在不设置限制参数的情况下获得符合搜索条件的帖子消息的完整列表?

最佳答案

也许您可以尝试使用循环。 FB每次获取不到1000个,所以可以使用循环获取整个feeds。像这样使用偏移量:

Parameter.with("limit", 1000));
Parameter.with("offset", offset));

Offset 将是一个变量,其值将为 1000,2000,3000...

关于java - 如何获取超过 25 条帖子消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7936946/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com