We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can your documentation make documentation for authentification in oAuth2
Thank you
The text was updated successfully, but these errors were encountered:
val conf = ConfigurationBuilder() .setOAuthConsumerKey(CONSUMER_KEY_CAT) .setOAuthConsumerSecret(CONSUMER_SECRET_CAT) .setOAuth2AccessToken(ACCESS_TOKEN) .setOAuthAccessTokenSecret(ACCESS_TOKEN_SECRET) .setDebugEnabled(true)
//Ask oAuthRequestToken val twitter = TwitterFactory(conf.build()).instance val oAuthRequestToken = twitter.oAuthRequestToken println(oAuthRequestToken) println(oAuthRequestToken.authorizationURL)
This worke, i follow the url and receive from Twitter callbak : //oauth_token=O-3YAAAAAAABp... //oauth_verifier=cIQde1fjyhdmBP...
So now what i have to do with this 2 key to finish configuration and post a tweet ?
Thank you for your help
Sorry, something went wrong.
No branches or pull requests
Can your documentation make documentation for authentification in oAuth2
Thank you
The text was updated successfully, but these errors were encountered: