linkedin

LinkedIn API: Access Denied when getting Access Token

╄→гoц情女王★ 提交于 2019-12-08 03:42:26
I'm trying to request for an access token using the endpoint: https://www.linkedin.com/oauth/v2/accessToken?grant_type=client_credentials&client_id={clientid}&client_secret={clientsecret} The response I get is: { "error": "access_denied", "error_description": "This application is not allowed to create application tokens" } I have set the permissions to r_basicprofile and rw_company_admin. Client Credential Flow (2-legged OAuth): https://docs.microsoft.com/en-us/linkedin/shared/authentication/client-credentials-flow?context=linkedin/consumer/context : Contributors If your application needs to

LinkedIn sharing counts lost

泪湿孤枕 提交于 2019-12-08 03:23:49
问题 I have a wordpress blog (http://bloculus.com/) where I use Super Socializer plugin to share my posts. Recently, I discovered that I lost all my LinkedIn share counts (in every post, it went back to 0). I got in touch with the plugin author and we saw that the issue wasn't in his side. When using the linkedin api, I see that I don't have any share on any post. Here is an example: http://www.linkedin.com/countserv/count/share?url=http://bloculus.com/process-communication-les-fondamentaux/

Error on sharing the content to LinkedIn

放肆的年华 提交于 2019-12-08 01:50:11
问题 I have successfully integrated LinkedIn native application in my application using LinkedIn mobile SDK . I am able to login successfully with my application but the problem is with sharing the content. While I successfully logged in , want to share my content to Linked in but it always give me error response { "errorCode": 0, "message": "Access to posting shares denied", "requestId": "MBB3L0G1KZ", "status": 403, "timestamp": 1452172936679 } though i have added all permission to LinkedIn I

LinkedIn API: Dynamic UI Component

怎甘沉沦 提交于 2019-12-08 01:46:36
问题 I am trying to dynamically populate the data-id field with a public url fetched from linkedin search results. Assume that I am able to return the public profile url. If I put the same script directly on the page (not through javascript) it works. resultsHtml += '<script type="IN/MemberProfile" data-id="'+currResult.publicProfileUrl+'" data-format="inline"/>'; $("#search-results").html(resultsHtml); For reference http://developer.linkedin.com/docs/DOC-1278 回答1: if you are using jQuery which i

LinkedIn shares API-v2 returns scrambled shares

▼魔方 西西 提交于 2019-12-07 22:58:39
问题 I am fully confused with the logic LinkedIn Shares API have in place, because what I read from the documentation about the shares LinkedIn API shares documentation it mentions that all posts are ordered based on created time and we can paginate by specifying start=(100, 200, 300 ,.... n)to get old posts. But that seems to be not true, see the scenarios below. I perform Shares API calls to get latest posts using https://api.linkedin.com/v2/shares?q=owners&owners={URN}&sharesPerOwner=1000&count

where to find the Oauth token and secret in the linkedin application

China☆狼群 提交于 2019-12-07 21:59:43
问题 I am trying to practice the examples in the book "mining the social web". Unlike the applications I had created in twitter and facebook, the Oauth token and secret in the linkedin never show up. I only see my client ID and client secret . by the way, since I do not have any personal url, can someone explain to me what is the appropriate URL I should enter? In the twitter and facebook applications, I just randomly entered some URL, like www.twitter.com, and it worked. In this application for

Getting old image while sharing page in LinkedIn

ε祈祈猫儿з 提交于 2019-12-07 19:46:11
问题 We have updated og:image but still in LinkedIn we are getting the old image. Is there any way to clear the catch for LinkedIn? 回答1: Unfortunately you can't clear the Cache LinkedIn is using like Facebook or Google+. But you can add a new query parameter to the url you are sharing to let LinkedIn fetch new data: http://mydomain.com/myarticle/?v=1 or something else like http://mydomain.com/myarticle/?foo=bar 来源: https://stackoverflow.com/questions/24081373/getting-old-image-while-sharing-page

Incomplete Linkedin OAuth 2.0 access token response

萝らか妹 提交于 2019-12-07 19:39:05
问题 My question is about OAuth2 access token response from Linkedin api. When I'm trying to get this token I recieve the following response: {"access_token":"...","expires_in":...} But the thing is that according to OAuth2 documentation (in 5.1 paragraph) there should be at least one more required parameter - "token_type". So the question is : could it be somehow customized so the linkedin API will return this parameter with access token response or it is just a departure from the rule and this

Is it possible to prevent stripping of query params from shared URLs?

跟風遠走 提交于 2019-12-07 17:25:04
问题 We utilize the LinkedIn "Customized URL" to allow sharing of articles to LinkedIn users' feeds. (https://developer.linkedin.com/docs/share-on-linkedin) The encoded URL that is passed into the "url" parameter contains our own tracking parameters. https://www.linkedin.com/shareArticle?url=http%3A%2F%2Fwww.thedailybeast.com%2Farticles%2F2015%2F03%2F26%2Famerica-loses-no-matter-who-wins-the-next-great-middle-east-war.html%3Fvia%3Ddesktop%26social%3DLinkedin Unfortunately, the URL's to our

Share on LinkedIn with og

六眼飞鱼酱① 提交于 2019-12-07 15:04:26
I have rails app. I added og tags for Facebook, google +, and Vkontakte. And I need to add possibility to share to LinkedIn too. But I don't understand why LinkedIn don't pick my OG tags. My html: = tag :meta, property: 'og:url', content: 'https://myapp.com/app' = tag :meta, property: 'og:title', content: 'MyApp' = tag :meta, property: 'og:description', content: 'You can always find a my app !' = tag :meta, property: 'og:image', content: "https://myapp.com#{image_path('backgrounds/desk.jpg')}" And facebook, g+, vk works perfectly, but linked in don't fetch any information from my website. Any