9

我正在使用 LinkedIn Javascript API 将用户登录到我的应用程序,但是即使我需要该特定字段的权限,API 也不会返回电子邮件地址。我将 API 脚本包括在内,如下所示:

<script type="text/javascript" src="//platform.linkedin.com/in.js">
  api_key: API_KEY
  scope: r_fullprofile r_emailaddress
</script>

然后我在标记中包含登录按钮:

<script type="in/Login" data-onAuth="onLinkedInAuth">

最后我有一个函数来为 API 响应添加回调:

function onLinkedInAuth() {
    var fields = ['first-name', 'last-name', 'email-address'];

    IN.API.Profile("me").fields(fields).result(function(data) {
        console.log(data);
    }).error(function(data) {
        console.log(data);
    });
};

我只得到名字和姓氏,但 API 不返回电子邮件字段。

参考:https ://developer.linkedin.com/documents/profile-fields#email

4

4 回答 4

14

1- be sure you made email permission (r_emailaddress) in your app http://developer.linkedin.com/documents/authentication#granting

2- then you may use this

    <script type="text/javascript" src="http://platform.linkedin.com/in.js">
        api_key: key
        **onLoad: onLinkedInLoad**
        authorize: true
    </script>

    <script>



        function onLinkedInLoad() {
            IN.Event.on(IN, "auth", onLinkedInAuth);
        }

        // 2. Runs when the viewer has authenticated
        function onLinkedInAuth() {

            IN.API.Profile("me").fields("first-name", "last-name", "email-address").result(function (data) {
                console.log(data);
            }).error(function (data) {
                console.log(data);
            });
         }
</script>

hope this will help you :) thanks

于 2013-12-25T10:35:57.343 回答
2

你好@Ulises Figueroa,可能我来晚了,但这就是我完成这项工作的方式:

从 head 部分中页面顶部的初始脚本标记开始:

<script>
    Client Id Number here:
    onLoad: onLinkedInLoad
    authorize: true
</script>

然后,在您的 JS 文件中(我放置了一个外部 JS 文件来处理此 API 注册/身份验证),放置以下详细信息:

function onLinkedInLoad() {
    IN.Event.on(IN, "auth", getProfileData);
}

function onSuccess(data) {
    console.log(data);
}

function onError(error) {
    console.log(error);
}

    function getProfileData(){
        IN.API.Profile("me").fields(["firstName","lastName", "email-address", "positions"]).result(function(data) {
            var profileData = data.values[0];
            var profileFName = profileData.firstName;
            var profileLName = profileData.lastName;

            if(data.values[0].positions._total == "0" || data.values[0].positions._total == 0 || data.values[0].positions._total == undefined) {
                console.log("Error on position details");
                var profileCName = "Details Are Undefined";
            }
            else {
                var profileCName = profileData.positions.values["0"].company.name;
            }
            var profileEName = profileData.emailAddress;

            //console.log all the variables which have the data that 
            //has been captured through the sign up auth process and
            //you should get them...

        });
    }

最后但并非最不重要的一点是,在您的 HTML 文档中添加以下内容,这可以帮助您启动linkedin auth 注册表单的弹出窗口:

<script type="in/Login"></script>

上述设置对我有用。当然,这会帮助你。

干杯,祝你有美好的一天。

于 2017-02-06T05:14:04.653 回答
1

实施看起来不错。我相信这是个人资料隐私设置的结果。每个链接的文档:

并非所有字段都可用于所有配置文件。可用字段取决于您代表提出请求的用户与会员之间的关系、会员选择提供的信息以及他们的隐私设置。您不应假定为给定成员返回 id 以外的任何内容。

于 2013-11-08T00:18:31.220 回答
-1

我发现这只发生在某些 LinkedIn 帐户上,所以这可能是由于电子邮件的某些隐私设置引起的。我找不到对文档的任何引用,因此我不得不考虑电子邮件字段不可用的情况。

于 2013-12-23T18:12:49.360 回答