List of Sensors available on the Galaxy Nexus code from this post used
Month: October 2012
Simple Tweets collection using Twitter’s Stream API and Java using Twitter4j
Fairly simple tweet collection (you will need to add to file/database/other storage) using Twitter’s stream API and Twitter4j
You need to add the Twitter4j core and stream Jars to your java application & you need to add in your own Twitter application tokens and user tokens (you should change this to not hardcode in the user tokens)
package com.crowley.simplestream; import twitter4j.FilterQuery; import twitter4j.Status; import twitter4j.StatusDeletionNotice; import twitter4j.StatusListener; import twitter4j.TwitterStream; import twitter4j.TwitterStreamFactory; import twitter4j.User; import twitter4j.conf.ConfigurationBuilder; public class SimpleStream { public static void main(String[] args) { ConfigurationBuilder cb = new ConfigurationBuilder(); cb.setDebugEnabled(true); cb.setOAuthConsumerKey("*************"); cb.setOAuthConsumerSecret("*************"); cb.setOAuthAccessToken("*************"); cb.setOAuthAccessTokenSecret("*************"); TwitterStream twitterStream = new TwitterStreamFactory(cb.build()).getInstance(); StatusListener listener = new StatusListener() { @Override public void onException(Exception arg0) { // TODO Auto-generated method stub } @Override public void onDeletionNotice(StatusDeletionNotice arg0) { // TODO Auto-generated method stub } @Override public void onScrubGeo(long arg0, long arg1) { // TODO Auto-generated method stub } @Override public void onStatus(Status status) { User user = status.getUser(); // gets Username String username = status.getUser().getScreenName(); System.out.println(username); String profileLocation = user.getLocation(); System.out.println(profileLocation); long tweetId = status.getId(); System.out.println(tweetId); String content = status.getText(); System.out.println(content +"\n"); } @Override public void onTrackLimitationNotice(int arg0) { // TODO Auto-generated method stub } }; FilterQuery fq = new FilterQuery(); String keywords[] = {"ireland"}; fq.track(keywords); twitterStream.addListener(listener); twitterStream.filter(fq); } }