2013-11-22 89 views
0

這個代碼不爲我工作負載LinkedIn的API,不顯示錯誤,沒什麼......無法通過JavaScript

<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> 

有人能幫助我嗎?

回答

0

從它的外觀你是接近。根據Manual,您適合您的原始方法。但看看

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

去掉 「;」所以它讀取:

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

因爲我沒有用於鏈接的開發密鑰我無法驗證或走得更遠。