How does getting the AccessToken work with Twitter4J?
When I send the user to the Authorization URL and the callback URL comes back with values oauth_token & oauth_verifier how do I then use these values to create an Accesstoken? I’ve tried new AccessToken(token,verifier) and getOAuthAccessToken(token,verifier) but it always seems to throw back errors.
How do I correctly use there two values to create the AccessToken?
You need to store the
RequestTokenobject in the session before redirecting.