我是这个 Twitter4j 库的新手。我正在尝试使用给定的用户存储所有关注者 ID userID
。我正在使用以下内容:
IDs ids;
long cursor = -1;
do{
ids = twitter.getFollowersIDs(userName, cursor);
for (long id : ids.getIDs()) {
// Store this id...
}
while ((cursor = ids.getNextCursor()) != 0);
过了一会儿,我得到了错误Rate limit exceeded
,没关系。但是,当我的速率限制问题将来修复时,我不知道如何继续存储给定用户 ID 的关注者 ID?
PS:userID
我正在尝试存储关注者ID的s拥有超过300万关注者。这就是为什么我需要从我离开的地方继续。