Twitter OAuth Help
Wha开发者_开发知识库t variables do we need to store when we authenticate a user using twitter connect ?
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.
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
精彩评论