Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to access LinkedIn API without a user

I'm building an application that gets data from LinkedIn using the REST API. When my user has a LinkedIn account, I use OAuth to authenticate and access the data on the user's behalf.

My problem is when the user doesn't have LinkedIn account. In such a case, I'd like to fallback to anonymous access and get very basic (and public) information from LinkedIn.

I saw in some other questions and discussions that in general, LinkedIn does not permit anonymous access to its API, but I also saw some hints about some APIs available also anonymously.

Is there absolutely no way to get any type of data out of LinkedIn API anonymously? Even the most basic data anyone could see in a user's public profile without logging in?

like image 438
davidrac Avatar asked Sep 10 '12 14:09

davidrac


People also ask

What data can you extract from LinkedIn API?

Using the API for LinkedIn, you can get detailed information about LinkedIn groups based on the ID of the target groups. Below are some of the data you can get: ID, name, date of creation, logo, description, location, industries, etc. Learn more in the LinkedIn API documentation.

How do I integrate LinkedIn API on my website?

Login to the LinkedIn Developer portal. Click My Apps from the top of the page and select Create App. Complete the app details and add your company page. For Self-Serve, complete all the steps and then click the Create App button at the bottom of the page.


1 Answers

Per the Terms of Use, it is not permitted to display API data to a non-authenticated user (section III(A)(1), III(A)(2)(g)). All data pulled from the API should be pulled by an authenticated user, using their OAuth credentials.

In terms of showing basic profile data anonymously, the Member Profile plugin was designed to do this.

like image 97
Unpossible Avatar answered Oct 07 '22 04:10

Unpossible