I am planning on a simple standalone, non-webapp Twitter demo for the purpose of getting my hands wet with spring-social; there is no frontend. For simplicity, everything will be run off method main
for the demo and the consumerKey
, consumerSecret
, accessToken
, and accessTokenSecret
are all visible.
Twitter twitter = new TwitterTemplate(consumerKey, consumerSecret,
accessToken, accessTokenSecret);
Does interacting with twitter.xxOperations()
protect the underlying keys and secrets?