Can the LinkedIn API return a list of a user's saved articles?
Asked Answered
N

1

7

The LinkedIn docs for the articles API show that I can get a particular article's content etc. by doing a

GET https://api.linkedin.com/v2/originalArticles/{originalArticlesId}

But it's not clear to me where I get that originalArticlesId from. How do I list the articles that any given user has saved?

Nagoya answered 25/7, 2020 at 8:35 Comment(3)
What does GET https://api.linkedin.com/v2/originalArticles give?Claustral
I need this too. Did you find a way?Ritualism
@CanÜrek, no, sadly notNagoya
H
3

The LinkedIn API does not yet provide that functionality. The closest you can get to what you are looking for is to get the articles published by a particular author.

GET https://api.linkedin.com/v2/originalArticles?q=authors

I think that if you want to have this functionality you will have to do a scraping of the profile of the person who requires this functionality.

Hildegard answered 1/8, 2020 at 10:37 Comment(3)
Is there any kind of documentation of it not being possible? or is it just a gap in the API?Nagoya
Nowadays, It is a void gap in the API.Hildegard
Is it still not possible? And is it possible to fetch a companies articles?Heelpost

© 2022 - 2024 — McMap. All rights reserved.