我尝试对twitter4J使用以下流示例: package twitter4j.examples.stream;
import java.util.Arrays;
* <p>This is a code example of Twitter4J Streaming API - filter methodtwitterStream.filter(new FilterQuery(0, followArray, t
我正在使用带有过滤器的twitter4j运行一个流,如下所示- filter.follow(userIds);我需要像add new people to follow这样更新过滤器,如下- userIds.add(NEW_ID)
我可以在不拦截流或不停止和启动现有twitterStream的情况下执行此操作吗?