流媒体API Twitter - 获取公共Stram

时间:2015-02-17 17:38:05

标签: java twitter twitter-streaming-api twitter-hbc

我正在使用hbc工具使用流式Api构建应用。我只想在没有任何跟踪词或其他过滤器的情况下获得公共流媒体流。 我怎么能设法做到这一点? 这是我写的代码示例:

StatusesFilterEndpoint endpoint = new StatusesFilterEndpoint();
endpoint.trackTerms(Lists.newArrayList("#aTweet"));
Authentication auth = new OAuth1(consumerKey, consumerSecret, token, secret);
Client client = new ClientBuilder()
            .hosts(Constants.STREAM_HOST)
            .endpoint(endpoint)
            .authentication(auth)
            .processor(new StringDelimitedProcessor(queue))
            .build();
// Establish a connection
client.connect();

有了这个,我可以跟踪一条推文,但不是所有公开的推文流。 谢谢你的回答^^

1 个答案:

答案 0 :(得分:0)

StatusesFilterEndpoint使用filter端点,它只返回匹配的推文。 hbc-core中还有StatusesSampleEndpoint实现,它从所有推文中返回小的随机样本。