0

数日前、Linkedin Javascript Profile API が正常に機能しなくなりました。リクエストしても、一部のフィールドが返されなくなりました。概要、受賞歴、役職、会社名の概要、役職がわかりません。何が起こっているのか誰にもわかりますか?

<script type="text/javascript" src="http://platform.linkedin.com/in.js">
  api_key: xxxxxxxxxxxxxxx
  scope: r_basicprofile r_emailaddress r_fullprofile r_contactinfo
  authorize: true
</script>

function loadData() {
  IN.API.Profile("me")
    .fields([
"id","summary","email-address","location:(name)","date-of-birth","firstName", "lastName", 
"pictureUrl","headline","honors","educations","interests",
"publications:(title,publisher:(name),date,url)",
"patents:(title,number,office:(name),date,url)",
"languages:(language:(name),proficiency:(name))",
"skills:(skill:(name),proficiency:(name))",
"certifications:(name,authority:(name),start-date,end-date)",
"courses","recommendations-received:(recommendation-text,recommender)",
"positions","phone-numbers"])
    .result(function(result) {   
        console.log(result);
    });
}

このバグの実際の例を次に示しますhttp://bit.ly/1nZa9wd ご覧のとおり、要約情報を要求しても、応答が返されませんでした。

4

1 に答える 1