gpt4 book ai didi

java - 使用 Twitter4j 发布 Twitter 线程

转载 作者:行者123 更新时间:2023-12-02 01:43:11 25 4
gpt4 key购买 nike

我正在尝试弄清楚如何使用 Twitter4J 来使用 Twitter4J 发布推文线程。我猜测它会以某种方式使用 StatusUpdate 类,但文档有点稀疏。有什么指点吗?

最佳答案

您应该将 inReplyToStatusId 设置为第一条推文之后的每条推文的最新发布状态 ID。 inReplyToStatusId 的默认值为 -1。

示例:

long inReplyToStatusId = -1
int counter = 0
int threadLimit = 5

while (counter < threadLimit){
StatusUpdate statusUpdate = new StatusUpdate(Integer.toString(counter));
statusUpdate.setInReplyToStatusId(inReplyToStatusId);

Status updatedStatus = twitter.updateStatus(statusUpdate);
inReplyToStatusId = updatedStatus.getId();
counter++;
}

关于java - 使用 Twitter4j 发布 Twitter 线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54137712/

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