Harsha M V
Harsha M V

Reputation: 54949

Twitter OAuth Help

What variables do we need to store when we authenticate a user using twitter connect ?

Upvotes: 1

Views: 224

Answers (2)

abraham
abraham

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

MartinHN
MartinHN

Reputation: 19772

To make an API request, you only need the following list of variables:

  • oauth_consumer_key
  • oauth_nonce
  • oauth_signature_method
  • oauth_token
  • oauth_timestamp
  • oauth_version

and the API method-specific variables.

See this example: http://dev.twitter.com/pages/auth#auth-request

Upvotes: 2

Related Questions