使用 twitter4j 通过 status_id 查找准确的推文

发布于 2024-12-16 23:45:16 字数 271 浏览 2 评论 0原文

我正在使用 twitter4j 来流式传输带有reply_id 的所有状态,以及(试图获取)他们正在回复的状态。因此,我流式传输了一堆状态,并且在每个状态上执行:

Long replyID=status.getInReplyToStatusId();

但随后我不知道如何使用我的 replyID 变量来实际找到关联的推文。

(我对 twitter4j 和 Twitter API 非常非常陌生)

谢谢

I'm using twitter4j to stream all statuses with a reply_id, and (trying to get) the status they are replying to. So I stream a bunch of statuses, and on each one do:

Long replyID=status.getInReplyToStatusId();

but then I don't know what to do with my replyID variable to actually find the associated tweet.

(I'm very, very new to twitter4j and the Twitter API)

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫瑾少女 2024-12-23 23:45:16

您可以使用replyId来获取实际的推文,例如:

Status tweet = twitter.showStatus(parent);

顺便说一句,当你说“使用reply_id流式传输所有状态”时,你的意思是什么,你能详细说明一下吗?

You can use the replyId to get the actual tweet like :

Status tweet = twitter.showStatus(parent);

BTW what do you mean when you say " stream all statuses with a reply_id",can you elaborate ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文