PHP code example of jackbutler / php-linkedin

1. Go to this page and download the library: Download jackbutler/php-linkedin library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jackbutler / php-linkedin example snippets


    
        

     
       $args = array (
                 'clientId'      => 'client_id',          // Your LinkedIn API Client Id (allback'  => 'URL/to/callback'         // The absolute URL to your application's callback handler (

   
       $scope = array (
           "r_basicprofile",
           "r_emailaddress"
                  );
       $signinUrl = $linkedin->getLoginURL($scope);
    

    
       // Instantiate a LinkedIn object as step 1, then:

       $token = $linkedin->handleLogin();
    

     
       $args = array (
                 'clientId'      => 'client_id',          // Your LinkedIn API Client Id (ccessToken'  => 'the_access_token'     // The access token authorised to make requests on the user's behalf
            );

       $linkedin = new PHPLI\Linkedin($args);

    

       
           request(
               String resource,
               String method = "GET",
               Array data = []
           );
    

       
           $response = $linkedin->request("/people/~:(first-name,last-name,id,email-address)");