linkedin
linkedin copied to clipboard
Ruby wrapper for the LinkedIn API
When retrieving a group profile or group posts, the current query methods in this library only support requested results for one group at a time. The API supports requesting result...
This will allow user of the client to write this: ``` ruby client.profile(secure_urls: true) ``` instead of ``` ruby client.profile(:'secure-urls' => true) ``` The latter better follows the ruby convention...
This was discovered on v0.4.6 When I use the `#companies` method like so, I get an Exception: ``` 1.9.3-p484 :001 > client.company(is_admin: 'true', fields: %w(id name universal-name email-domains company-type)) =>...
I am trying to connect to this service : `http://api.linkedin.com/v1/companies/{id}/relation-to-viewer/is-company-share-enabled` As a response, I am getting LinkedIn::Mash object, which is blank. The response I am expecting is `true` Any ideas?
I have faced this problem when I call @client.network_updates: **LinkedIn::Errors::GeneralError in LinkedinsController#callback (400): Unknown field {first-name} in resource {Update}** That's the code where I set @client: ``` ruby def set_linkedin_client...
# What The internals of the linkedin gem are in need of some refactoring. This changes the internals to rely on Faraday and FaradayMiddleware to reduce some of the cruft....
Added in documentation for others to find is_admin Accept true/false instead of just 'true'/'false'
This Pull Request add Group Discussion API, will add other functionnality for it. Actually, it has comments and likes method. See https://developer.linkedin.com/documents/groups-api.
Added two new companies API's for - Retrieving a List of companies user currently following - Retrieving a List of companies suggested companies to follow
This introduces a breaking change to the add_company_share method. We now parse the response body so the user does not have to parse the xml response body. This change should...