Class: LinkedIn::Client
- Inherits:
-
Object
- Object
- LinkedIn::Client
- Includes:
- Api::CommentMethods, Api::CompanySearchMethods, Api::GroupMethods, Api::PeopleSearchMethods, Api::PostMethods, Api::QueryMethods, Api::UpdateMethods, Helpers::Authorization, Helpers::Request, Search
- Defined in:
- lib/linked_in/client.rb
Constant Summary
Constants included from Helpers::Authorization
Helpers::Authorization::DEFAULT_OAUTH_OPTIONS
Constants included from Helpers::Request
Helpers::Request::API_PATH, Helpers::Request::DEFAULT_HEADERS
Instance Attribute Summary collapse
-
#consumer_options ⇒ Object
readonly
Returns the value of attribute consumer_options.
-
#consumer_secret ⇒ Object
readonly
Returns the value of attribute consumer_secret.
-
#consumer_token ⇒ Object
readonly
Returns the value of attribute consumer_token.
Instance Method Summary collapse
-
#initialize(ctoken = LinkedIn.token, csecret = LinkedIn.secret, options = {}) ⇒ Client
constructor
A new instance of Client.
Methods included from Search
Methods included from Api::CommentMethods
Methods included from Api::PeopleSearchMethods
Methods included from Api::CompanySearchMethods
Methods included from Api::PostMethods
Methods included from Api::GroupMethods
Methods included from Api::UpdateMethods
Methods included from Api::QueryMethods
#company, #connections, #network_updates, #profile
Methods included from Helpers::Authorization
#access_token, #authorize_from_access, #authorize_from_request, #consumer, #request_token
Constructor Details
#initialize(ctoken = LinkedIn.token, csecret = LinkedIn.secret, options = {}) ⇒ Client
Returns a new instance of Client.
19 20 21 22 23 |
# File 'lib/linked_in/client.rb', line 19 def initialize(ctoken=LinkedIn.token, csecret=LinkedIn.secret, ={}) @consumer_token = ctoken @consumer_secret = csecret @consumer_options = end |
Instance Attribute Details
#consumer_options ⇒ Object (readonly)
Returns the value of attribute consumer_options.
17 18 19 |
# File 'lib/linked_in/client.rb', line 17 def @consumer_options end |
#consumer_secret ⇒ Object (readonly)
Returns the value of attribute consumer_secret.
17 18 19 |
# File 'lib/linked_in/client.rb', line 17 def consumer_secret @consumer_secret end |
#consumer_token ⇒ Object (readonly)
Returns the value of attribute consumer_token.
17 18 19 |
# File 'lib/linked_in/client.rb', line 17 def consumer_token @consumer_token end |