Hey,
I know that Twitter4J is updated into 4.0.6 or something, but it is a java file. I need to display "full text" of twitter which they just update there api a year ago. The new version of Twitter4j can do this. However, the processing library version is old. It is missing this method. I googled around and found a post talks about how to work around this here . Unfortunately, my novice skill can not just make it work.
I did download the whole folder or Twitter4J but could not figure it out how to use plain java with my code. I did try create a java file of the code from the link above, place it in the same folder of .pde, and tried to call the class-- no luck.
People said it needed only
`twitter4j.conf.ConfigurationBuilder()
.setOAuthConsumerKey(""))
.setOAuthConsumerSecret("")
.setOAuthAccessToken("")
.setOAuthAccessTokenSecret("")
.setTweetModeExtended(true)`
But I do not understand java code. So I have no idea how to get into that part. Any suggestion? Thank you.