-
-
Save kiy0taka/1020384 to your computer and use it in GitHub Desktop.
twitter4j-streamを使ってみる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Grab('org.twitter4j:twitter4j-stream:2.2.3') | |
import twitter4j.* | |
new TwitterStreamFactory().instance.with { | |
addListener([onStatus:{println "@${it.user.screenName}: ${it.text}"}] as UserStreamAdapter); user() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment