2017 © Pedro Peláez
 

library apply-with-linkedin-php

A Linkedin wrapper, that generates a CV from users profile that can be send to consultants

image

soroush/apply-with-linkedin-php

A Linkedin wrapper, that generates a CV from users profile that can be send to consultants

  • Friday, July 27, 2018
  • by soroushatarod
  • Repository
  • 1 Watchers
  • 3 Stars
  • 33 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Apply with linkedin - PHP

Linkedin Class which generates a PDF based upon user profile

Why should I use this library?

  • You dont need to write long api calls. All api calls are handled by the library
  • IDE friendly: The library is IDE friendly, you don't need to check linkedin website to view available fields You can view the fields in the Entity folder
  • Generates PDF from members profile
  • Few line of code. You can create a PDF from members profile, display it in browser
  • Saves time!

The reason why I have use oauth 1 is because you can clear the tokens, and you can enforce user to sign in again!

Installation

Composer

If your using composer add this to your dependencies:, (*1)

"soroush/apply-with-linkedin-php": "dev-master" , (*2)

PHP OAUTH driver

You would need to install the PHP OAUTH Driver Execute this command on your machine pecl install oauth , (*3)

Sample code to download profile as PDF

require_once 'vendor/autoload.php';

$consumerKey = '';
$consumerSecret = '';

$linkedin = new \Soroush\Linkedin\Linkedin($consumerKey, $consumerSecret);

if ($linkedin->isLoggedIn()) {
    echo $linkedin->fetch()->downloadPdf();
} else {
    echo $linkedin->getLoginUrl();
}

Sample code to get user details

require_once 'vendor/autoload.php';

$consumerKey = '';
$consumerSecret = '';

$linkedin = new \Soroush\Linkedin\Linkedin($consumerKey, $consumerSecret);

if ($linkedin->isLoggedIn()) {
    echo $linkedin->fetch()->profile()->getFirstName();
    echo $linkedin->fetch()->profile()->getLastName();
} else {
    echo $linkedin->getLoginUrl();
}

For complete guide visit

http://soroushatarod.github.io/apply-with-linkedin-php/, (*4)

The Versions

27/07 2018

dev-master

9999999-dev

A Linkedin wrapper, that generates a CV from users profile that can be send to consultants

  Sources   Download

The Requires

 

The Development Requires

api oauth sdk client pdf linkedin