Class: ContextIO::OauthProvider
- Inherits:
-
Object
- Object
- ContextIO::OauthProvider
- Includes:
- CallHelpers
- Defined in:
- lib/context_io/oauth_provider.rb
Constant Summary collapse
- OAUTH_READERS =
%I(type provider_consumer_key provider_consumer_secret resource_url)
Instance Attribute Summary collapse
-
#api_call_made ⇒ Object
Returns the value of attribute api_call_made.
Instance Method Summary collapse
- #call_url ⇒ Object
-
#initialize(parent:, identifier: nil, response: nil, status: nil, success: nil, api_call_made: nil) ⇒ OauthProvider
constructor
A new instance of OauthProvider.
Methods included from CallHelpers
#build_url, #call_api_return_new_object, #call_api_return_updated_object, #delete, #get, #get_request, #parse_response, #return_post_api_call_made, #success?, #validate_params
Methods included from CollectionHelper
#collection_return, #contact_collection_return
Constructor Details
#initialize(parent:, identifier: nil, response: nil, status: nil, success: nil, api_call_made: nil) ⇒ OauthProvider
Returns a new instance of OauthProvider.
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/context_io/oauth_provider.rb', line 11 def initialize(parent:, identifier: nil, response: nil, status: nil, success: nil, api_call_made: nil) @parent = parent @connection = parent.connection @response = response @status = status @success = success @key = identifier @api_call_made = api_call_made if response parse_response(response) end end |
Instance Attribute Details
#api_call_made ⇒ Object
Returns the value of attribute api_call_made.
9 10 11 |
# File 'lib/context_io/oauth_provider.rb', line 9 def api_call_made @api_call_made end |
Instance Method Details
#call_url ⇒ Object
29 30 31 |
# File 'lib/context_io/oauth_provider.rb', line 29 def call_url build_url("oauth_providers", key) end |