我正在尝试从连接中获取电子邮件,姓名和图片,但是当用户进行身份验证时,我收到错误“GET https://api.linkedin.com/v1/people/~/connections:(picture-url,first-name,email-address)?count=30 403(Forbidden)”
我在下面发布我的代码。
<!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>
答案 0 :(得分:2)
API无法理解&#39;身份验证:true&#39;。它应该是'授权:true&#39;。
<script type="text/javascript" src="http://platform.linkedin.com/in.js">
api_key: uey3banalp6s
authorize: true
</script>
答案 1 :(得分: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>
这应该使您的脚本正常工作。您缺少范围权限。更多信息:Profile Fields permisssions
答案 2 :(得分:0)
首先出现在你加载LinkedIn的脚本是一团糟。您需要将API密钥放在引号中,否则JavaScript会认为crypto的clusterbomb是变量名。其次,你在一个似乎是赋值的东西中使用冒号,但你不在对象文字中。尝试使用
api_key = "uey3banalp6s";
authentication = true;
答案 3 :(得分: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的答案放在您的其他脚本标签
中