Superclass for tokens used by OAuth Clients
# File lib/oauth/tokens/consumer_token.rb, line 7 def self.from_hash(consumer, hash) token = self.new(consumer, hash[:oauth_token], hash[:oauth_token_secret]) token.params = hash token end
# File lib/oauth/tokens/consumer_token.rb, line 13 def initialize(consumer, token="", secret="") super(token, secret) @consumer = consumer @params = {} end
Make a signed request using given http_method to the path
@token.request(:get, '/people') @token.request(:post, '/people', @person.to_xml, { 'Content-Type' => 'application/xml' })
# File lib/oauth/tokens/consumer_token.rb, line 24 def request(http_method, path, *arguments) @response = consumer.request(http_method, path, self, {}, *arguments) end
Sign a request generated elsewhere using Net:HTTP::Post.new or friends
# File lib/oauth/tokens/consumer_token.rb, line 29 def sign!(request, options = {}) consumer.sign!(request, self, options) end