无法通过javascript加载Linkedin API

时间:2013-11-22 19:12:30

标签: javascript api linkedin

此代码对我不起作用,不显示错误,没有...

<script type="text/javascript" src="http://platform.linkedin.com/in.js">
    api_key: xxxxxxxxxxx
    onLoad: onLinkedInLoad
    authorize: true
</script>
<script type="text/javascript">
function onLinkedInLoad() {
    IN.API.Raw("/companies/xxxxxxx:(num-followers)");
   .result( function(result) { document.getElementById("statusDiv").innerHTML = result; } )
   .error( function(error) { /* do nothing */ } );
}
</script>

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

从它的外观来看,你很接近。根据{{​​3}},你适合你的原始方法。但是看看

IN.API.Raw("/companies/xxxxxxx:(num-followers)");

删除“;”所以它写着:

IN.API.Raw("/companies/xxxxxxx:(num-followers)")

因为我没有链接的开发密钥,所以我无法验证或进一步了解。