Class: Oauth::Contacts::Base
- Inherits:
-
Object
- Object
- Oauth::Contacts::Base
- Defined in:
- lib/oauth/contacts/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#access_token ⇒ Object
readonly
Returns the value of attribute access_token.
-
#callback_url ⇒ Object
readonly
Returns the value of attribute callback_url.
-
#consumer ⇒ Object
readonly
Returns the value of attribute consumer.
Instance Method Summary collapse
- #authorize_url ⇒ Object
- #contacts ⇒ Object
-
#initialize ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize ⇒ Base
Returns a new instance of Base.
6 7 |
# File 'lib/oauth/contacts/base.rb', line 6 def initialize end |
Instance Attribute Details
#access_token ⇒ Object (readonly)
Returns the value of attribute access_token.
4 5 6 |
# File 'lib/oauth/contacts/base.rb', line 4 def access_token @access_token end |
#callback_url ⇒ Object (readonly)
Returns the value of attribute callback_url.
4 5 6 |
# File 'lib/oauth/contacts/base.rb', line 4 def callback_url @callback_url end |
#consumer ⇒ Object (readonly)
Returns the value of attribute consumer.
4 5 6 |
# File 'lib/oauth/contacts/base.rb', line 4 def consumer @consumer end |
Instance Method Details
#authorize_url ⇒ Object
9 10 11 |
# File 'lib/oauth/contacts/base.rb', line 9 def raise "Not Implemented" end |
#contacts ⇒ Object
13 14 15 |
# File 'lib/oauth/contacts/base.rb', line 13 def contacts raise "Not Implemented" end |