Download the PHP package jackbutler/php-linkedin without Composer
On this page you can find all versions of the php package jackbutler/php-linkedin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jackbutler/php-linkedin
More information about jackbutler/php-linkedin
Files in jackbutler/php-linkedin
Package php-linkedin
Short Description A PHP library for interacting with the LinkedIn API
License MIT
Informations about the package php-linkedin
PHPLI
A PHP library to provide easy interaction with the LinkedIn API
Installation
Install this package via composer:
Run composer require jackbutler/php-linkedin
Install manually:
Download this package into your project and include using:
Usage
Before carrying out calls to the API, your application should first be authenticated by the user to interact with LinkedIn, namely by having them grant you an authorisation code, which you can then exchange for a longer-lived access token (currently 60 days). The process recommended is as follows:
-
Sign In with LinkedIn
The library includes a method for generating sign in URLs to provide a "Sign In with LinkedIn" button/link to your users. To generate this URL, you first need to create a new instance of the LinkedIn class:
You can then use this instance to generate a login URL, for your required scope. For example:
You can then provide this URL to your users to sign in with LinkedIn:
-
Exchange Authorisation Token for Access Token
Step 1 will take user through the sign in and authorisation process on LinkedIn, and will then return your user to the callback URL you provided, with an authorisation token (assuming all went well). In you callback script you then need to exchange the short-lived authorisation token for a longer-lived access token (currently 60 days).
The library provides a login handler that can be used inside your callback script as follows:
This method will attempt to retrieve the auth code and CSRF token from the URL query string (via ), then internally calls the method to carry out the exchange. As well as returning the access token, the token is also saved as a property of the LinkedIn object (during the call) to prepare the object for subsequent requests. The access token will be stored in the object for the lifetime of that instance, so your application will need to store the access token if you wish to use it for later requests.
-
Make requests to the API
To make requests to the API you will again need an instance of PHPLI\LinkedIn, but this time with an access token also set during instantiation:
Once you have the instance of LinkedIn, you can then use the method to carry out your request. The arguments of are as follows:
The following gives an example of getting a few attributes of the logged in user from LinkedIn
Development
This library I developed as part of another project I was working on, but as I struggled myself to find a suitable library to interact with LinkedIn, I thought I'd extract it and package it for others to use. I do plan on maintaining it and improving it, I'd like to add some helper classes, such as a LinkedInUser class (if anyone has used the Facebook PHP SDK, I'd like to build this into something similar).
Please feel free to fork this project, submit pull requests for improvements etc.
License
This project is licensed under the MIT License.