Parent

OAuth::ConsumerToken

Superclass for tokens used by OAuth Clients

Attributes

consumer[RW]
params[RW]
response[R]

Public Class Methods

from_hash(consumer, hash) click to toggle source
# 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
new(consumer, token="", secret="") click to toggle source
# File lib/oauth/tokens/consumer_token.rb, line 13
def initialize(consumer, token="", secret="")
  super(token, secret)
  @consumer = consumer
  @params   = {}
end

Public Instance Methods

request(http_method, path, *arguments) click to toggle source

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!(request, options = {}) click to toggle source

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

[Validate]

Generated with the Darkfish Rdoc Generator 2.