Class: OAuth::AccessToken
- Inherits:
-
ConsumerToken
- Object
- Token
- ConsumerToken
- OAuth::AccessToken
- Defined in:
- lib/oauth/tokens/access_token.rb
Overview
The Access Token is used for the actual “real” web service calls that you perform against the server
Instance Attribute Summary
Attributes inherited from ConsumerToken
Attributes inherited from Token
Instance Method Summary collapse
-
#delete(path, headers = {}) ⇒ Object
Make a regular DELETE request using AccessToken.
-
#get(path, headers = {}) ⇒ Object
Make a regular GET request using AccessToken.
-
#head(path, headers = {}) ⇒ Object
Make a regular HEAD request using AccessToken.
-
#post(path, body = '', headers = {}) ⇒ Object
Make a regular POST request using AccessToken.
-
#put(path, body = '', headers = {}) ⇒ Object
Make a regular PUT request using AccessToken.
-
#request(http_method, path, *arguments) ⇒ Object
The less intrusive way.
Methods inherited from ConsumerToken
from_hash, #initialize, #sign!
Methods inherited from Token
Methods included from Helper
#escape, #generate_key, #generate_timestamp, #normalize, #parse_header, #unescape
Constructor Details
This class inherits a constructor from OAuth::ConsumerToken
Instance Method Details
#delete(path, headers = {}) ⇒ Object
Make a regular DELETE request using AccessToken
@response = @token.delete('/people/123')
@response = @token.delete('/people/123', { 'Accept' => 'application/xml' })
64 65 66 |
# File 'lib/oauth/tokens/access_token.rb', line 64 def delete(path, headers = {}) request(:delete, path, headers) end |
#get(path, headers = {}) ⇒ Object
Make a regular GET request using AccessToken
@response = @token.get('/people')
@response = @token.get('/people', { 'Accept'=>'application/xml' })
23 24 25 |
# File 'lib/oauth/tokens/access_token.rb', line 23 def get(path, headers = {}) request(:get, path, headers) end |
#head(path, headers = {}) ⇒ Object
Make a regular HEAD request using AccessToken
@response = @token.head('/people')
31 32 33 |
# File 'lib/oauth/tokens/access_token.rb', line 31 def head(path, headers = {}) request(:head, path, headers) end |
#post(path, body = '', headers = {}) ⇒ Object
Make a regular POST request using AccessToken
@response = @token.post('/people')
@response = @token.post('/people', { :name => 'Bob', :email => '[email protected]' })
@response = @token.post('/people', { :name => 'Bob', :email => '[email protected]' }, { 'Accept' => 'application/xml' })
@response = @token.post('/people', nil, {'Accept' => 'application/xml' })
@response = @token.post('/people', @person.to_xml, { 'Accept'=>'application/xml', 'Content-Type' => 'application/xml' })
43 44 45 |
# File 'lib/oauth/tokens/access_token.rb', line 43 def post(path, body = '', headers = {}) request(:post, path, body, headers) end |
#put(path, body = '', headers = {}) ⇒ Object
Make a regular PUT request using AccessToken
@response = @token.put('/people/123')
@response = @token.put('/people/123', { :name => 'Bob', :email => '[email protected]' })
@response = @token.put('/people/123', { :name => 'Bob', :email => '[email protected]' }, { 'Accept' => 'application/xml' })
@response = @token.put('/people/123', nil, { 'Accept' => 'application/xml' })
@response = @token.put('/people/123', @person.to_xml, { 'Accept' => 'application/xml', 'Content-Type' => 'application/xml' })
55 56 57 |
# File 'lib/oauth/tokens/access_token.rb', line 55 def put(path, body = '', headers = {}) request(:put, path, body, headers) end |
#request(http_method, path, *arguments) ⇒ Object
The less intrusive way. Otherwise, if we are to do it correctly inside consumer, we need to restructure and touch more methods: request(), sign!(), etc.
6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/oauth/tokens/access_token.rb', line 6 def request(http_method, path, *arguments) request_uri = URI.parse(path) site_uri = consumer.uri is_service_uri_different = (request_uri.absolute? && request_uri != site_uri) consumer.uri(request_uri) if is_service_uri_different @response = super(http_method, path, *arguments) # NOTE: reset for wholesomeness? meaning that we admit only AccessToken service calls may use different URIs? # so reset in case consumer is still used for other token-management tasks subsequently? consumer.uri(site_uri) if is_service_uri_different @response end |