linkedin-jsapi

LinkedIn API: GET public profile from e-mail

牧云@^-^@ 提交于 2019-12-06 20:41:55
问题 I'm using R to connect with the LinkedIn API. I'd like to pass it the email of a user and retrieve that user's public profile. I've gone through the documentation here, but have found nothing useful on the subject. I'm sure that this is somehow possible because Rapportive has been doing it for a long time. Any help would be appreciated! 回答1: There are three ways to match a user's email address with a LinkedIn profile. Have a special partnership with LinkedIn which allows you access to non

How to retrieve the list of positions including all the fields using the LinkedIn javascript sdk?

空扰寡人 提交于 2019-12-05 12:53:11
I want to get the id, title, summary, start-date, end-date, is-current and company name for each position that a LinkedIn member has entered on its profile. I tested a query on the REST Console and I got the desired result. The query is " https://api.linkedin.com/v1/people/~/positions:(id,title,summary,start-date,end-date,is-current,company)?format=json ". The problem is that when I try to do the same thing using the LinkedIn javascript SDK I'm not getting the whole list of fields for each position. I'm getting the complete list of positions, but not all the fields for each position. This is

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

心不动则不痛 提交于 2019-12-05 10:52:37
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 single line of code about the login mechanism, or allow origin headers/files, or LinkedIn settings etc)

Is LinkedIn OpenID Connect provider? How can it be used with AWS Cognito Federated Identity?

可紊 提交于 2019-12-05 03:10:14
The AWS Cognito documentation is very sketchy when it comes to explaining OpenID Connect providers or how to implement auth using say LinkedIn. The nearest example is of SalesForce https://aws.amazon.com/blogs/security/building-an-app-using-amazon-cognito-and-an-openid-connect-identity-provider/ These steps did not work for LinkedIn using it Javascript SDK. Not able to retrieve id_token similar to FB or Google JS SDK. AWS needs id_token to return the AWS credentials. Anyone has successfully implemented Linked with AWS Cognito? Nope. It seems Linkedin does not offer full OpenID Connect. Also

LinkedIn API: GET public profile from e-mail

ⅰ亾dé卋堺 提交于 2019-12-05 01:08:01
I'm using R to connect with the LinkedIn API. I'd like to pass it the email of a user and retrieve that user's public profile. I've gone through the documentation here , but have found nothing useful on the subject. I'm sure that this is somehow possible because Rapportive has been doing it for a long time. Any help would be appreciated! There are three ways to match a user's email address with a LinkedIn profile. Have a special partnership with LinkedIn which allows you access to non-public API functions. This is very hard, and per my understanding, they only consider big guys (Startups with

Sign in with Linkedin doesn't trigger callback on iOS Safari when using the JS API

僤鯓⒐⒋嵵緔 提交于 2019-12-01 16:15:27
I'm using SignIn with Linkedin on a website, via the JS API. It works fine on the few desktop browsers I've tested (Chrome and FF on Windows, Safari on MacOS), and on a slightly outdated Android Chrome. But it fails on iOS Safari (I use iOS 7). The issue is that on iOS Safari, the callback passed as argument to IN.User.authorize is not executed. The line looks like this: IN.User.authorize(this._getProfileData, this); _getProfileData is executed on the desktop browsers mentioned above and Android Chrome, but not iOS Safari. This issue can even be reproduced without iOS: via Chrome's developer

IN.User.Authorize callback never fired

百般思念 提交于 2019-11-30 07:23:30
Since today, our application that uses the linkedin javascript SDK to authenticate users stopped working. ​ We realized that the call to https://platform.linkedin.com/in.js now redirects to https://platform.linkedin.com/xdoor/scripts/in.js . ​ Consequently, calls to IN.User.Authorize(callbackFunction) successfully opens the authentication dialog window but the callback is never fired anymore. ​ Also, in another part of our application we are using the IN.UI.Authorize.place().onWindowRemove.subscribe(callbackFunction) to track dialog closes. This feature has also stopped wording and now opens a

LinkedIn API - get information about my ALL Connections

随声附和 提交于 2019-11-30 04:40:15
I have used Facebook API but I am new to Linkedin api. I need some help on how to get information (name, birthday, etc) about my ALL Connections, and I need help with both the token and the info-related API calls. As for the token -- in Facebook there is the Facebook Console to generate tokens at runtime and test our API calls... Does LinkedIn have something similar? Update: I'm able to get list of connections using: http://api.linkedin.com/v1/people/~/connections?modified=new ... but how can I also get birthdates (if shared publicly)? I've attempted: http://api.linkedin.com/v1/people/~

CORS blocks LinkedIn share api

陌路散爱 提交于 2019-11-29 14:13:42
I try to post new content using LinkedIn share API through JavaScript from AngularJS application as given below. var xml = "<share><comment>" + content + "</comment><visibility><code>anyone</code></visibility></share>"; var req = { method: 'POST', url: 'https://api.linkedin.com/v1/people/~/shares?oauth2_access_token=' + account.token, headers: { 'Content-Type': 'text/plain' }, data: xml }; $http(req).success(function(data) { console.log(data); console.log('published to linkedin'); }).error(function() { console.log(arguments); console.log('failed to publish to linkedin'); }); I can successfully

IN.User.Authorize callback never fired

我是研究僧i 提交于 2019-11-29 09:32:19
问题 Since today, our application that uses the linkedin javascript SDK to authenticate users stopped working. ​ We realized that the call to https://platform.linkedin.com/in.js now redirects to https://platform.linkedin.com/xdoor/scripts/in.js. ​ Consequently, calls to IN.User.Authorize(callbackFunction) successfully opens the authentication dialog window but the callback is never fired anymore. ​ Also, in another part of our application we are using the IN.UI.Authorize.place().onWindowRemove