linkedin

Facebook,Twitter,LinkedIn, share link count

我与影子孤独终老i 提交于 2019-11-27 17:37:59
Is there any way to get number of users share some link on Facebook,Twitter,LinkedIn example: how many times some link was shared to Facebook,Twitter,LinkedIn to calculate popularity of some content. how to get share count my particular api ? is there any other option ? Are there some api ? Update Unfortunately, Twitter share count is impossible with API 1.1 Ref: intgr/(number) is number of shares and all responses are in JSON Facebook http://graph.facebook.com/?id=http://{URL} Returns: { "id": "http://{URL}", "shares": intgr/(number) } Twitter http://cdn.api.twitter.com/1/urls/count.json?url

Getting LinkedIn Profile Picture

。_饼干妹妹 提交于 2019-11-27 17:26:46
Is there an easy way to grab a users LinkedIn profile photo? Ideally similar to how you would with Facebook - http://graph.facebook.com/userid/picture Adam Trachtenberg Not as easy... You need to go through OAuth, then on behalf of the member, you ask for: http://api.linkedin.com/v1/people/{user-id}/picture-url Rahim Basheer You can retrieve the original photo size with this call: http://api.linkedin.com/v1/people/~/picture-urls::(original) Note that this could be any size, so you'll need to do scaling on your side, but the image is the original one uploaded by the user. Once the Linkedin user

linkedin Uncaught Error: You must specify a valid JavaScript API Domain as part of this key's configuration

南楼画角 提交于 2019-11-27 17:26:06
问题 I have followed the instructions listed here in the 10 minute instructions: guide And the help from stackoverflow listed here: stackanswer I still get this error: Console.log error: Uncaught Error: You must specify a valid JavaScript API Domain as part of this key's configuration. My Code is this: <script type="text/javascript" src="//platform.linkedin.com/in.js"> api_key:'98eeeu4fd587w4' </script> Where the api_key value is the value of Consumer Key / API Key from my app. And for the

How to Retrieve all possible information about a LinkedIn Account ? (API using C#)

会有一股神秘感。 提交于 2019-11-27 17:20:58
I am writting an C# app to make use of Linkedin's API . I want to be able to query "Person" (First Name + Last Name) and retrieve all the possible information about this group of people with the same name I am currently using my own implementation of the REST API alongside People-Search API calls. Here's an example of a request that I know works: https://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,headline,picture-url),num-results)? I'm running it with: first-name=parameter&last-name=parameter after the ? mark The problem is, I want to retrieve more information such as

How to report a bug in the LinkedIn API?

我怕爱的太早我们不能终老 提交于 2019-11-27 14:54:20
问题 I've been searching and searching, but I can't find out how to report a bug in the LinkedIn API. LinkedIn's Developer site is completely devoid of any mention of bugs. Even Googling "How to report a bug in the LinkedIn API" yields nothing. LinkedIn's Developer Support page says that "[engineers] collaborate on questions tagged "linkedin" at Stack Overflow." There are two problems with using SO for reporting this bug: StackOverflow is not a bug reporting platform. The bug report requires

Accessing r_fullprofile after new LinkedIn API policy changes

江枫思渺然 提交于 2019-11-27 14:48:13
问题 Is the only way to access r_fullprofile by applying for LinkedIn partnership after the new API policy? My application is currently using it for fetching the users "Skills" which requires r_fullprofile instead of r_basicprofile . Would I need to do any changes regarding the new policy if I only used r_basicprofile ? 回答1: As per LinkedIn's documentation, "skills" fields are only available under the r_fullprofile member permission (https://developer.linkedin.com/docs/fields/full-profile) when

LinkedIn API unable to view _any_ company profile

点点圈 提交于 2019-11-27 14:22:05
I'm trying to figure out how to access any company profile on LinkedIn. For example, the REST endpoint API for LinkedIn itself is: https://api.linkedin.com/v1/companies/1337?format=json with the sample response of: { "id": 1337, "name": "LinkedIn" } However, after authenticating with OAuth2 with rw_company_admin enabled, my app returns: { "errorCode": 0, "message": "Member 206xxxxxx does not have permission to get company 1337", "requestId": "G6LNMCEZO8", "status": 403, "timestamp": 1432358171348 } This worked up until very recently. The documentation does note that "In order to perform any of

Posting LinkedIn message from Android application

你说的曾经没有我的故事 提交于 2019-11-27 14:12:08
I want to integrate my Android application with LinkedIn and post a message. Can anyone provide an example for how to do this? did you even try google it ? from http://developer.linkedin.com/docs/DOC-1255 we got http://code.google.com/p/linkedin-j/ EDIT: here is my sample project http://esilo.pl/LITest.zip EDIT2: minimal sample, with tokens stored in SharedPreferences (so you don't need to do authorization every time(i'll update LITest.zip)) EDIT3: AsyncTask code added ... to avoid NetworkOnMainThreadException :) AndroidManifest.xml: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns

How to get LinkedIn r_fullprofile access?

不问归期 提交于 2019-11-27 12:38:29
I am currently developing custom application(company specific) integrated with LinkedIn. I have received data with basic profile access to fetch and fill some fields on my application and now I need full profile permission. But as answered in this question it is not allowed anymore. I see that there are partner programs are there. So I have following questions with me. How to get permission to access full profile data. Do I need to contact them? If so how to contact them. Is there any criterias to be completed ? if so if so criterias should I completed to be eligible. Is it involve any price?

LinkedIn OAuth2: “Unable to verify access token”

十年热恋 提交于 2019-11-27 08:29:21
It works if and only if the user is signed into LinkedIn at the time of making the OAuth2 request. If the user is not signed in then we encounter an error. Sequence of our actions: successfully fetch the fresh access token using the access token, post to the api endpoint https://api.linkedin.com/v1/people/\~ After this we receive a 401 with the following content: { "errorCode": 0, "message": "Unable to verify access token", "requestId": "C0DUCX81SA", "status": 401, "timestamp": 1421946470523 } Sometimes, after some time passed, a retry with the same Access Token gives a 200. Sometimes not. If