Extracting LinkedIn recommendations for your website

后端 未结 2 1238
故里飘歌
故里飘歌 2021-02-08 07:16

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

2条回答
  •  太阳男子
    2021-02-08 07:25

    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/

提交回复
热议问题