Linkedin API for public data

I want to use the Linkedin API to get job postings for any company. This data seems to be publicly available, so I need to integrate Oauth?

+6
source share
2 answers

The LinkedIn API is not intended for developers to capture information and present it to people who have not authenticated (public display). Making calls as a single authenticated user to store it or present it elsewhere is contrary to the API Terms of Use. In addition, you cannot store the data that you receive - they are simply intended to be presented to an authenticated user.

If you want to use the API to represent this information, your users must authenticate using LinkedIn, and then you can call on their behalf. This is probably the easiest to do using the Javascript framework.

+6
source

Data is not publicly available. You need an API key, and you need oAuth to call the API. You may not need this if you just want public profiles. Read the docs (RTFM).

http://developer.linkedin.com/rest

http://developer.linkedin.com/documents/job-search-api

+3
source

Source: https://habr.com/ru/post/907488/


All Articles