Module: LinkedIn::Api::QueryMethods
- Included in:
- Client
- Defined in:
- lib/linked_in/api/query_methods.rb
Instance Method Summary collapse
- #company(options = {}) ⇒ Object
- #connections(options = {}) ⇒ Object
- #network_updates(options = {}) ⇒ Object
- #profile(options = {}) ⇒ Object
Instance Method Details
#company(options = {}) ⇒ Object
21 22 23 24 |
# File 'lib/linked_in/api/query_methods.rb', line 21 def company( = {}) path = company_path() simple_query(path, ) end |
#connections(options = {}) ⇒ Object
11 12 13 14 |
# File 'lib/linked_in/api/query_methods.rb', line 11 def connections(={}) path = "#{person_path()}/connections" simple_query(path, ) end |
#network_updates(options = {}) ⇒ Object
16 17 18 19 |
# File 'lib/linked_in/api/query_methods.rb', line 16 def network_updates(={}) path = "#{person_path()}/network/updates" simple_query(path, ) end |
#profile(options = {}) ⇒ Object
6 7 8 9 |
# File 'lib/linked_in/api/query_methods.rb', line 6 def profile(={}) path = person_path() simple_query(path, ) end |