The RequestToken is used for the initial Request. This is normally created by the Consumer object.
# File lib/oauth/tokens/request_token.rb, line 12 12: def callback_confirmed? 13: params[:oauth_callback_confirmed] == "true" 14: end
exchange for AccessToken on server
# File lib/oauth/tokens/request_token.rb, line 17 17: def get_access_token(options = {}, *arguments) 18: response = consumer.token_request(consumer.http_method, (consumer.access_token_url? ? consumer.access_token_url : consumer.access_token_path), self, options, *arguments) 19: OAuth::AccessToken.from_hash(consumer, response) 20: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.