2017-04-04 45 views
1

同樣的事情似乎發生在兩年前public-profile-url causing error,但在這個問題上批准的解決方案並沒有解決這個問題。Linkedin連接API'public-profile-url'拋出500錯誤

的任何連接請求,請求場「公開簡介-URL」引發以下錯誤:

https://api.linkedin.com/v1/people/~/connections:(public-profile-url)?start=0&oauth2_access_token=<token> 

<error> 
<status>500</status> 
<timestamp>1491329264595</timestamp> 
<request-id>8IJSBKJHQR</request-id> 
<error-code>0</error-code> 
<message>Internal API server error</message> 
</error> 

如果這僅僅是他們的API的問題,我很想得到LinkedIn的關注事項。

編輯:有趣的是,我找到了一個導致失敗的特定Linkedin連接(通過調整'start'和'count'參數)。在這裏發佈這可能不明智,但如果需要,我可以將這些信息提供給LinkedIn員工。

編輯2:我發現用'site-standard-profile-request'取代'public-profile'確實起到了解決方法的作用。這是不完全一樣的東西,但足夠接近,如果你的用戶已經使用oauth

回答

1

同樣的問題,在我的情況下,解決了從linkedin中刪除「site-standard-profile-request」和「current-share」屬性v1人的要求。

這裏是工作API網址:

https://api.linkedin.com/v1/people/~:(id,first-name,last-name,maiden-name,formatted-name,phonetic-first-name,phonetic-last-name,formatted-phonetic-name,headline,location,industry,num-connections,num-connections-capped,summary,specialties,positions,picture-url,picture-urls::(original),site-standard-profile-request,api-standard-profile-request) 
相關問題