使用 twitter4j 通过 status_id 查找准确的推文
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用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 ?