Reputation: 54949
What variables do we need to store when we authenticate a user using twitter connect ?
Upvotes: 1
Views: 224
Reputation: 47833
The oauth_token
and oauth_token_secret
that you get from the /oauth/access_token
method is specific to the user and required to make future API requests. These do not expire but may be revoked at anytime.
Upvotes: 3
Reputation: 19772
To make an API request, you only need the following list of variables:
and the API method-specific variables.
See this example: http://dev.twitter.com/pages/auth#auth-request
Upvotes: 2