1

我正在尝试从连接中获取电子邮件、姓名和图片,但是当用户进行身份验证时,我收到错误“GET https://api.linkedin.com/v1/people/~/connections:(picture-url,first -name,email-address)?count=30 403 (禁止) "

我在下面发布我的代码。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="http://platform.linkedin.com/in.js">
    api_key: uey3banalp6s
    authentication: true
</script>

<script type="text/javascript">

    function loadData() {
    IN.API.Connections("me")
    .fields(["pictureUrl","firstName","emailAddress"])
    .params({"count":30})
    .result(function(result) {
    profHTML = "";
    for (var index in result.values) {
    profile = result.values[index]
    if (profile.pictureUrl) {
    profHTML += "email:" + profile.emailAddress;
    profHTML += "name:" + profile.firstName;
    profHTML += "<img class=img_border height=30 align=\"left\" src=\"" + profile.pictureUrl + "\">";
    }
    }
    $("#connections").html(profHTML);
    });
    }

</script>
</head>

<body>
<div id="connections"></div>
    <script type="IN/Login" data-onAuth="loadData">
</script>
</body>
</html>
4

4 回答 4

2

API 不理解“身份验证:真”。它应该是“授权:真”。

<script type="text/javascript" src="http://platform.linkedin.com/in.js">
    api_key: uey3banalp6s
    authorize: true
</script>
于 2013-02-05T16:21:49.153 回答
1

将脚本初始化代码更改为:

<script type="text/javascript" src="http://platform.linkedin.com/in.js">
    api_key: your_api_key
    authentication: true
    scope: r_basicprofile r_emailaddress
</script>

这应该使您的脚本正常工作。您缺少范围权限。更多信息:配置文件字段权限

于 2012-12-05T10:15:41.360 回答
0

首先出现的脚本,即您加载 LinkedIn 的位置,是一团糟。您需要将 API 密钥放在引号中,否则 JavaScript 会认为加密集群炸弹是一个变量名。其次,您在看似分配的内容中使用了冒号,但您不在对象文字中。尝试使用

api_key = "uey3banalp6s";
authentication = true;
于 2012-11-30T01:53:28.147 回答
0

我很确定你不能这样做(但显然有黑客可以允许它)

<script type="text/javascript" src="http://platform.linkedin.com/in.js">
    api_key: uey3banalp6s   //nothing in here gets used if src is set
    authentication: true    //even if it did it would be "=" not ":"
</script>

将 Keith 的答案放在您的其他脚本标签中

于 2012-11-30T02:11:58.073 回答