Download the PHP package joomla/linkedin without Composer
On this page you can find all versions of the php package joomla/linkedin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download joomla/linkedin
More information about joomla/linkedin
Files in joomla/linkedin
Package linkedin
Short Description Joomla Linkedin Package
License GPL-2.0-or-later
Homepage https://github.com/joomla-framework/linkedin-api
Informations about the package linkedin
The LinkedIn Package
Deprecated
The joomla/linkedin
package is deprecated with no further updates planned.
Using the LinkedIn Package
The LinkedIn package is designed to be a straightforward interface for working with LinkedIn. It is based on the REST API. You can find documentation on the API at http://developer.linkedin.com/rest.
Instantiating Linkedin
Instantiating Linkedin is easy:
This creates a basic Linkedin object that can be used to access resources on linkedin.com, using an active access token.
Generating an access token can be done by instantiating OAuth.
Create a LinkedIn application at https://www.linkedin.com/secure/developer in order to request permissions. Instantiate OAuth, passing the Registry options needed. By default you have to set and send headers manually in your application, but if you want this to be done automatically you can set Registry option 'sendheaders' to true.
Now you can authenticate and request the user to authorise your application in order to get an access token, but if you already have an access token stored you can set it to the OAuth object and if it's still valid your application will use it.
When calling the authenticate() method, your stored access token will be used only if it's valid, a new one will be created if you don't have an access token or if the stored one is not valid. The method will return a valid access token that's going to be used.
Accessing the LinkedIn API's objects
The LinkedIn package covers almost all Resources of the REST API:
- Communications object interacts with Communications resources.
- Companies object interacts with Companies resources.
- Groups object interacts with Groups resources.
- Jobs object interacts with Jobs resources.
- People object interacts with People and Connections resources.
- Stream object interacts with Social Stream resources.
Once a Linkedin object has been created, it is simple to use it to access LinkedIn:
This will retrieve a list of connections for a user who has granted access to his/her account.
A More Complete Example
Below is an example demonstrating more of the Linkedin package.
More Information
The following resources contain more information:
Installation via Composer
Add "joomla/linkedin": "2.0.*@dev"
to the require block in your composer.json and then run composer install
.
Alternatively, you can simply run the following from the command line:
All versions of linkedin with dependencies
joomla/oauth1 Version ^1.1.1
joomla/input Version ~1.0|~2.0
joomla/http Version ^1.2.2|~2.0
joomla/registry Version ^1.4.5|~2.0