Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extracting LinkedIn recommendations for your website

Tags:

linkedin

How can I extract or get the LinkedIn recommendations for my website? Is there any plugin or PHP script?

like image 533
Rodrigo Avatar asked Jul 23 '11 23:07

Rodrigo


People also ask

How do I Find my LinkedIn recommendations?

Then scroll all the way to the bottom of the of your profile -- usually below your Organizations and Honors & Awards, but before you see the bottom navigation for the page (Help Center, About, etc). On the left side of your profile, you will see a series of black/gray title blocks, one of which will say Recommendations.

How to boost your LinkedIn profile and get hired?

Employers are more likely to hire someone who others say good things about. On LinkedIn, you can give and receive recommendations to boost your profile. In this article, however, our focus is on giving.

What are the best LinkedIn recommendation examples for previous coworkers?

Try adapting our best LinkedIn recommendation examples for colleagues and previous coworkers: Recommendation Example #1 “Only one word that comes to mind when I think of [Name], and that’s AWESOME. I worked with [Name]at [Company]and [he/she]was a consummate professional at all times.

Why is there only one section on my LinkedIn profile page?

One section is really valuable since it gives something often referred to as Social proof, and that is the section with your “Recommendations”. And for some reason, that section just happens to be one of the last sections to appear on your LinkedIn profile page. Not possible to move (something I think is strange).


1 Answers

You can extract the recommendations using the LinkedIn API, specifically the Profile API. Rough steps are:

  1. Create an application;
  2. Authenticate yourself via OAuth;
  3. Make a call to the API (via JavaScript or some other language via the REST interface) to retrieve your recommendations. A sample call that will do this:

http://api.linkedin.com/v1/people/~:(recommendations-received)

In terms of doing this with PHP, there is a free library, along with demo scripts, here:

http://code.google.com/p/simple-linkedinphp/

like image 92
Unpossible Avatar answered Oct 02 '22 07:10

Unpossible