We are using the V1 version of the LinkedIn API to share articles on LinkedIn Profile and company pages. As V1 API does not allow media upload capability, we are looking for V2 version API access. It seems V2 version is available to partners only.
We have tried becoming a LinkedIn partner by filling up the partner form but we do not get any reply back. We have done 4 attempts till now but still no luck.
We are running a social media scheduling tool where our customers share various type of articles, image, and video posts but because of not having the V2 API access, we are not able to offer media sharing/scheduling features to our customers.
Can anyone guide or help us to get the V2 API access?
Thanks in advance.
You will receive a reply from them but it take a while (we received it in about a month)
Related
I would like to get public profile for any company and people from linkedIn using LinkedIn API. Which API I need to use and how can I use?
You may want to be more specific on the values/details you are trying to access, but let's start with finding company profile details.
1 - Start here and review their API documentation:
https://www.linkedin.com/developers/
LinkedIn has made a lot of changes lately, so you'll need to be ready to migrate from V1 to V2 if you already have something built previously.
2 - Create your App and apply for the Marketing Partner Program, and review the documentation here:
https://learn.microsoft.com/en-us/linkedin/shared/references/migrations/marketing-permissions-migration
That should be a good starting point, but if you could be more specific with what you need, I could provide some more direct answers.
Good luck!
LinkedIn is just changing API and switching from v1 to v2.
API v1 offers endpoints for retrieving data from companies (i.e. information about company, company feed etc.): https://developer.linkedin.com/docs/company-pages
It looks that there is no such options in API v2? Am I right?
LinkedIn informed that in order to "manage company pages" one has to participate in Marketing Developer Program (https://business.linkedin.com/marketing-solutions/marketing-partners/become-a-partner/marketing-developer-program) but even though - new "Organization and Brands API" looks really poor and offers much less information than the old one: https://learn.microsoft.com/en-us/linkedin/marketing/integrations/community-management/organizations
If anyone know an option to retrieve company feed using LinkedIn API v2?
You are right. Likely linkedin abandoned their API.
"This API is deprecated. Access is no longer being granted"
https://learn.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/activity-feed
I'm developing a news rss feed for a company that needs to see the content they post on linkedin on their website. I have seen that version v1 will be deprecated, so I need the V2 of the API.
For this, we used the call https://api.linkedin.com/v1/companies/XXXXXX/updates/, although I always appear the message :
" Member does not have permission to get company. "
Should the user be the administrator of the API application created and in addition to the company's page?
Is it absolutely necessary that we request to join the marketing-developer-program in order to obtain this information?
I've pored over the LinkedIn developer documentation for api v2, and can't find any endpoints or documentation which provides me with a given company's list of jobs. Does anyone know if this is still possible using API v2, and if so, can anyone point me at documentation for this specific use case of their API or give me an example URI for requesting this data?
Thank you!
p.s. This SO post seems to be the most relevant, but it doesn't provide me with a solid answer as it is rather old and refers to api v1 endpoints and functionality: Retrieve job postings for a specific company using LinkedIn's API
Apparently this is not yet possible with v2. But what I could suggest is that you look at how LinkedIn carries out the job search on their own website. They use Voyager service which pretty much having the endpoints you'll ever need to get your work done.
Have a look: https://linkedin.api-docs.io/v1.0/search/yKaMAGcbmsJBswTCb
Press F12 and inspect the XHR requests flowing out to LinkedIn website when you do a job search. It will give you a lot of hints ;)
I tried to migrage current API to v2 as recent announcement by Linkedin "all developers need to migrate their apps to our newest APIs and OAuth 2.0 by March 1, 2019".
I have an app using API v1 with OAuth 2.0 to get personal and company profile, share a post on company page.
I tried test with request to https://api.linkedin.com/v2/me**&projection=(id)
System keep saying "Not enough permissions to access..."
On recent attempt to request help, it redirected to stactoverflow that implied I need to apply for access to LinkedIn's Marketing Developer Program to access this API.
I applied for API access via this page https://business.linkedin.com/marketing-solutions/marketing-partners/become-a-partner/marketing-developer-program#get-started serveral times.
Until now I haven't received any feedback yet.
That is close to the deadline March 1st to migrate to API version 2.
Please advise what I need to access and develop API v2?
First check what permission you have :
In V2 you have to apply for partner program for using company related API
In V2 for talking basic information you have to use r_liteprofile + r_emailaddress
r_liteprofile for firstName,lastName,profilePicture,id - https://api.linkedin.com/v2/me?projection=(id,firstName,lastName,profilePicture(displayImage~:playableStreams))
r_emailaddress for getting emailAddress - https://api.linkedin.com/v2/emailAddress?q=members&projection=(elements*(handle~))