linkedin-api

Linkedin API v2: Receive vanityname on signup linkedin

柔情痞子 提交于 2021-02-19 08:39:48
问题 I'm doing the sign up integration with LinkedIn for a personal application and i have a big trouble. We need the vanityName in order to make people visible via linkedin. How we can redirect them to profiles without using vanityName? I tried with ID unsuccessfully. I use this endpoint with r_liteprofile scope: https://api.linkedin.com/v2/me?projection=(id,firstName,lastName,vanityName,profilePicture(displayImage~:playableStreams)) and it returns me: { "firstName": { "localized": { "es_ES":

LinkedIn Api v2 - Get company posts

♀尐吖头ヾ 提交于 2021-02-11 14:41:53
问题 I'de like to get the last posts from my LinkedIn company page for add on my website. I'm already created the app and generated the Access Token. I didn't understand which endpoint I need to use, I tried this: https://api.linkedin.com/v2/shares?q=owners&owners=urn:li:organization:MY_COMPANY_ID but I received the follow error: "serviceErrorCode": 100, "message": "Not enough permissions to access: GET-owners /shares", "status": 403 Can somebody help me? Thanks 回答1: Did You request Marketing

How to use (new) LinkedIn API from and with R?

蓝咒 提交于 2021-02-10 15:53:26
问题 It seems that Rlinkedin is deprecated, that LinkedIn API has changed, and that LinkedIn does not provide a lot of informations for R users in documentation for developers. I don't understand why. For the moment, there are references only for Bash, NodeJS and Java... Could anyone provide a very basic, recent and working example in R to begin with LinkedIn API? For instance, how to get profiles? This kind of example doesn't work: url <- 'https://www.linkedin.com/in/reidhoffman/' library(httr)

How to use (new) LinkedIn API from and with R?

 ̄綄美尐妖づ 提交于 2021-02-10 15:53:17
问题 It seems that Rlinkedin is deprecated, that LinkedIn API has changed, and that LinkedIn does not provide a lot of informations for R users in documentation for developers. I don't understand why. For the moment, there are references only for Bash, NodeJS and Java... Could anyone provide a very basic, recent and working example in R to begin with LinkedIn API? For instance, how to get profiles? This kind of example doesn't work: url <- 'https://www.linkedin.com/in/reidhoffman/' library(httr)

LinkedIn API: Server error while listing UGC posts

笑着哭i 提交于 2021-02-07 20:42:55
问题 I'm getting a server error when trying to list all UGC posts for an organization. I have followed the API documentation there: https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#find-ugc-posts-by-authors I'm doing a GET request on this URL: https://api.linkedin.com/v2/ugcPosts?q=authors&authors=List(urn%3Ali%3Aorganization%3A6645672) I added the Authorization header with the correct value. The UGC posts should be returned, but instead I'm

Target Audience Count in LinkedIn API

穿精又带淫゛_ 提交于 2021-02-05 08:25:28
问题 LinkedIn API v1 had an api endpoint to count the number of selected target audience. The later apis has this endpoint only for Ads-API Now, I am trying to share posts using targeting criteria (Share API). I want to restrict posting if size of audience is less than 300. (As LinkedIn has a limit (audience size must be at least 300), I have to do a check first.) how do I count the size of target? (Note that, I have the count of individual categories with this endpoint: but these audiences might

Unable to get access token for linkedin using axios

▼魔方 西西 提交于 2021-01-29 18:27:42
问题 I am trying to get access token following the steps described in Linkedin Oauth. I am trying to perform step 2 in the process to get an access token. I am using Axios for the POST request. Here is the code I am using (The client secret and id is not real for security reasons): const axios = require('axios'); const qs = require('qs'); axios({ method: 'post', url: 'https://www.linkedin.com/oauth/v2/accessToken', data: qs.stringify({ grant_type: 'authorization_code', code:

Can i get lead gen data at linked in using webhooks URL and C# likd facebook?

不想你离开。 提交于 2021-01-29 16:50:43
问题 i have an application in linked in and have page on it and Campaign manager, i want to send leads data automatically to Microsoft Dynamics CRM without downloading the leads,i want to make this cycle dynamics. i do not know where can i add My Webhooks URL to can send leads information to it. 回答1: If I understand your req, you have an external system (non crm) and from this system you wish to get information from crm and perform some operation in crm. I would suggest you go with Dynamics 365

Linkedin v2 vector asset upload error 400

妖精的绣舞 提交于 2021-01-29 05:06:45
问题 Hello everyone who suffering from Microsoft LI v2 migration. I have issue with UGC with vector asset (image), it's based on https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/vector-asset-api#upload-the-asset I have uploadUrl from the first query, and when i perform second query it gives me error 400. When i try to debug and cURL it (according to their example), the last log lines: > Content-Length: 1636960 > * Connection state changed (MAX_CONCURRENT

Implementing Linkedin Share API

北慕城南 提交于 2021-01-28 21:10:49
问题 I am trying to use linkedin API for sharing my web site post on linkedIn. While making an rest api call to linkedin, I am gettting below error: { "errorCode": 0, "message": "Invalid arguments: {S_400_BAD_REQUEST=Bad request}", "status": 400, } I am getting invalid arguments error. However, I am passing all the required arguments as described in LinkedIn documentation. Please help if anyone faced and resolved above error. Thanks!! 回答1: I ditched the rest api and used the js api, it was much