TwDoor - Twitter
I use Twitter4J library for my sketch. It can let Processing(JAVA) work with Twitter.
“Processing code is converted to straight Java code (using the “preprocessor”) “
—-Processing Wiki Page
It’s a very useful library and can be obtained easily online, and there are many examples there.
Twitter4j http://www.twitter4j.org
// This is where you enter your ConsumerKey info
static String OAuthConsumerKey = “xxxxxx”;
static String OAuthConsumerSecret = “xxx”;
// This is where you enter your Access Token info
static String AccessToken = “xxxxx”;
static String AccessTokenSecret = “xxx”;







