linkedin

Post created using create image share API with /ugcPosts endpoint is not visible on linkedin on my timeline

不羁岁月 提交于 2020-07-06 20:22:05
问题 I have implemented all three steps for sharing an image post on linkedin using create image share api described below. But created posts are not visible on my linkedin feed/posts or recent activities. https://docs.microsoft.com/en-us/linkedin/consumer/integrations/self-serve/share-on-linkedin#create-an-image-share First time I created the post is visible using API and it returned {"id":"urn:li:share:6521244543193575424"} Posted Visible post url: https://www.linkedin.com/feed/update/urn:li

Post created using create image share API with /ugcPosts endpoint is not visible on linkedin on my timeline

心已入冬 提交于 2020-07-06 20:21:29
问题 I have implemented all three steps for sharing an image post on linkedin using create image share api described below. But created posts are not visible on my linkedin feed/posts or recent activities. https://docs.microsoft.com/en-us/linkedin/consumer/integrations/self-serve/share-on-linkedin#create-an-image-share First time I created the post is visible using API and it returned {"id":"urn:li:share:6521244543193575424"} Posted Visible post url: https://www.linkedin.com/feed/update/urn:li

Undefined method when accessing hash element

谁说我不能喝 提交于 2020-06-09 16:59:06
问题 Hash: p: {:headline=>"Managing Director at Test company name", :pid=>"0tSsRvCR7r", :first_name=>"John", :last_name=>"Doe", :industry=>"Financial Services", :summary=>nil, :public_profile_url=>"http://www.linkedin.com/pub/john-doe/7a/78/606", :distance=>0} Attempting to call p.pid but getting the error: EXCEPTION: undefined method `pid' for #<Hash:0x007fcf1b3a29f0> All other elements can be accessed fine. Also tried different names for the field but to no avail. Can anyone shed some light on

LinkedIn share to individual

爱⌒轻易说出口 提交于 2020-05-31 05:14:40
问题 How do I share to an individual on LinkedIn, i.e., send a message to someone on LinkedIn? http://developer.linkedin.com/documents/tags-and-templates#share The above link doesn't specify how to pass the LinkedIn id of the user. 回答1: The consensus appears to be: There is no way to setup a URL on LinkedIn to share to a particular individual. If a user wants, they can select to send their message to everyone or to a particular person, but it is up to the user: Look at the documentation URL you

how to get Linkedin person id for V2 api?

守給你的承諾、 提交于 2020-05-16 03:04:58
问题 I am trying to post on my LinkedIn profile through Linkedin V2 API. It keeps returning an error Request Error: com.linkedin.publishing.util.common.ResponseException: Writers of type person are not authorized to modify UserGeneratedContent.. maybe this is happening because I didn't send my LinkedIn person id. $author = array( 'author' => 'urn:li:person:XXXXXXXX', ); How can i find my linkedin profile's Person id? 回答1: You can use the Profile API to Retrieve Current Member's Profile. In the

How to dynamically load linkedin share button?

天涯浪子 提交于 2020-04-12 20:18:24
问题 I am loading dynamically content on my web site and I need to create social media buttons after the ajax function, when i get necessary information. I found great solutions for facebook and twitter, but I can't find the working solution for linkedin. Hope my question is clear... Thanks in advance for smart answers! EDIT: I found a solution. var din ='<script id="holderLink" type="IN/Share" data-url="http://kitchenprague.com/news.php?id='+val.id+'" data-counter="right"></script>'; $("

Android LinkedIn SDK produces unusable access tokens

落花浮王杯 提交于 2020-04-03 04:26:36
问题 What I am trying to accomplish: Authenticate w/ LinkedIn via their Android SDK Fetch User's profile to obtain their userId Create new user against our internal service So far I have been able to authenticate with LinkedIn, retrieve an access token, and use that against LinkedIn's service to obtain their user id. The flow looks a bit like this LISessionManager.getInstance(activity).init(this.activity.get(), permissionScope, authLinkedInCallback, showDialogIfAppMissing); upon returning into my

LinkedIn post inspector encountering server error on https URL

只谈情不闲聊 提交于 2020-03-24 00:49:24
问题 Inspecting a given URL in the LinkedIn post inspector returns the following ingestion feedback: Error We encountered a server error while trying to inspect the URL. The URL redirect trail shows: 1 0 undefined https://example.com I inspected URLs of both the production domain (https) and a staging sub-domain (http) on the same server (with identical html, needless to say). The LinkedIn scraper is able to fetch all metadata from the http sub-domain but not the https domain which leads me to

Internal service error on LinkedIn using the Share API? [closed]

独自空忆成欢 提交于 2020-02-08 02:54:31
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . While trying to send post via the Share API using the code as follows. I am getting Internal service error status 500 PHP code $base_url = 'https://api.linkedin.com/v1/people/~/'; $url = $base_url . 'shares'; $xml = '<share>'; $xml .= '<comment>' . 'test'. '</comment>'; $xml .= '<content>'; $xml .= '<title>' .

can I get access token through LinknedIn JS SDK?

牧云@^-^@ 提交于 2020-02-04 01:14:11
问题 new to LinkedIn OAuth development, I want to use its JS SDK to implement login, but I can not find a way to get the access_token after I login successfully. Does LinkedIn JS SDK has some API to get it ? Just like facebook javascript api does. Thank you ! 来源: https://stackoverflow.com/questions/37509948/can-i-get-access-token-through-linknedin-js-sdk