What is the rest call for getting feed in linkedin api - linkedin

In linkedin documentation i learn something like {service} in rest api call but I'm not able to understand that.
Can anyone please eloborate about this rest api.
Eg: https://api.linkedin.com/v2/{service}

For Receiving linkedin Feeds you can call this url
https://api.linkedin.com/v2/activityFeeds?q=networkShares
It will only give you the posts shared by your network.
For more details go through the documentation.

Related

how to get a LinkedIn page via Email using LinkedIn API

I am trying to understand how to get a LinkedIn page using LinkedIn API, if I know an email.
Is it possible?
I have found Handle Lookup API, but it looks like it has not been supported already.
https://learn.microsoft.com/en-us/linkedin/shared/integrations/people/handle-lookup?view=li-lms-2022-07

Linkedin API Webhooks

We are developing a platform to help freelancers schedule #linkedin posts for their clients and manage comments on those posts.
I understand from the documentation that LinkedIn provides webhooks for apps to get notified when a Page post receives comments but I can't find a way to enable that feature. At the moment we are basically query the API frequently enough to make it look like it is a webhook but that is not a proper solution.
Is it a very restricted feature just like video UGC posts (which would be nice to have as well)?
Or can we apply somehow?
Any help is appreciated, thanks.

Is it possible to schedule a post with Linkedin Api

I am trying to use linkedin API for sharing my web site post on linkedin. One of the feature is to schedule the post after some time or specific date. I would like to know is there any Api available for that where i can pass some parameter and the post is submitted on linkedin.
Please help if anyone have done this before
Thanks!!

Linkedin API call C#

I need to access Linkedin api using C#, but not able to get documents/articles how I can make call to Linkedin API.
I need to get company information using Linkedin API if I pass the company name I need to get the feeds.
Can anyone please direct me how I can proceed further.
Regards
Anand
This call for get the code:
https://www.linkedin.com/uas/oauth2/authorization?response_type=code&client_id=your-client-id&redirect_uri=your-redirect-uri&state=987654321&scope=r_basicprofile
This call for exchange code to token:
https://www.linkedin.com/uas/oauth2/accessToken?grant_type=authorization_code&code=your-code&redirect_uri=your-redirect-uri&client_id=your-client-id&client_secret=your-client-secret
And finally this call for get user info:
https://api.linkedin.com/v1/people/~:(firstName,lastName,picture-url)?oauth2_access_token=your-token&format=json
To take the client id and the client secret, you need sign up to linkedin developer, Here:
https://www.linkedin.com/secure/developer

Get linkedin public status updates

I am trying to get latest 3 public activities of our company from linkedin (ex: http://www.linkedin.com/company/4043/activity) and present it on our website but unfortunately I dont see a clear explanation to do so in the API documentations. I registered an API Key but I am confused if I need to do OAuth if so against what and then what API to call to get publicly available info?
Is OAuth really needed for something that is available?
Can I store an OAuth token for an internal user and keep fetching data on that? I would really do not want to authenticated the site visitors with oauth to get free linkedin content.
This question is on the lines of this one, but I still wanted to ask and see if I could get a better response/answer.
To get the company updates from the LinkedIn API, you will need to reference the following document:
https://developer.linkedin.com/reading-company-updates
The API is currently in preview mode, but the above document addresses your question re: OAuth as well as shows the specific calls as well as sample output. If you have any questions after reviewing the docs, please feel free to visit our developer forums at:
https://developer.linkedin.com/forums/rest
And one of someone from our team would be more than happy to help you further.
Enjoy!
-Jeremy

Resources