linkedin-api

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

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 implement “Login with LinkedIn” with “OAuth 2.0” in Android

妖精的绣舞 提交于 2020-02-01 04:05:12
问题 In OAuth1.0 "Login with Linkedin" Working fine but before few days Linkedin make some changes in their policy, please refer below link for more detail, https://engineering.linkedin.com/blog/2018/12/developer-program-updates I also tried some GitHub example and other reference but unfortunately not work for me, I also tried below link but it did not fulfill the exact requirement. Oauth 2.0 authorization for LinkedIn in Android You can also refer below link, may it give some result, I also know

LinkedIn Profile PlugIn does not load logo #linkedin

醉酒当歌 提交于 2020-01-24 20:01:20
问题 I've been dealing with an issue regarding the LinkedIn Company Profile Plugin, using the following code: <script src="//platform.linkedin.com/in.js" type="text/javascript"></script <script type="IN/CompanyProfile" data-id="1337" data-format="inline" data-related="false"></script> Which was provided in this page https://developer.linkedin.com/plugins/company-profile I'm able to embed the profile but the company logo just does not seem to load and uppon inspection its throwing a 404 error on

How to fetch Analytics Data(Clicks,Impressions etc) for my Linkedin UGCPost(Video) Post?

依然范特西╮ 提交于 2020-01-22 13:15:27
问题 I am looking to find the UgcPosts-Analytics Data(Image attached for the required fields-https://i.stack.imgur.com/jpaZI.png) from the LinkedIn API.I have retrieved UGCPost IDs of all my ugcPosts/Videos from - https://developer.linkedin.com/docs/guide/v2/shares/ugc-post-api#get-authors. UgcPosts are simply the posts that LinkedIn Page Admin/Account owner publishes on his page/account in form of videos. Now ofcourse there is a Video Analytics API(https://developer.linkedin.com/docs/guide/v2

Post an article to company LinkedIN page via REST api (v2)

梦想与她 提交于 2020-01-14 02:19:24
问题 Using v2 of LinkedIn REST API I'm searching for a way to post an article to my company's LinkedIn page. I've signed up here https://business.linkedin.com/marketing-solutions/marketing-partners/become-a-partner/marketing-developer-program and currently waiting to be approved. I want to be able to create a blog post on my company website and when i press 'publish' i want to post that blog post, as an article, to my companys LinkedIn page. The closest i've been to finding information regarding

LinkedIn Login: Blocked a frame with origin “https://platform.linkedin.com” from accessing a frame with origin

会有一股神秘感。 提交于 2020-01-13 10:34:20
问题 We had Login with LinkedIn code set up and working perfectly with LinkedIn Javascript SDK, where a few days ago we suddenly started to get this: Blocked a frame with origin "https://platform.linkedin.com" from accessing a frame with origin "https://OUR_SITE". Protocols, domains, and ports must match. And login does not complete (it returns from LinkedIn to our page and waits forever). I have no idea why we started to get this error when everything was working perfectly (we haven't changed a

LinkedIn Login: Blocked a frame with origin “https://platform.linkedin.com” from accessing a frame with origin

十年热恋 提交于 2020-01-13 10:33:51
问题 We had Login with LinkedIn code set up and working perfectly with LinkedIn Javascript SDK, where a few days ago we suddenly started to get this: Blocked a frame with origin "https://platform.linkedin.com" from accessing a frame with origin "https://OUR_SITE". Protocols, domains, and ports must match. And login does not complete (it returns from LinkedIn to our page and waits forever). I have no idea why we started to get this error when everything was working perfectly (we haven't changed a

LinkedIn Login & Database connection

雨燕双飞 提交于 2020-01-07 04:39:14
问题 I am trying to connect my Linkedin Login page to the database for getting user information. But whatever I did is just authorized to login a user and database is not receiving any information. Here is my index.php <?php require_once "init.php"; require_once "includes/db.php"; if(isset($_GET['code'])) // get code after authorization { $url = 'https://www.linkedin.com/uas/oauth2/accessToken'; $param = 'grant_type=authorization_code&code='.$_GET['code'].'&redirect_uri='.$config['callback_url'].'