简体   繁体   English

如何从Linkedin Javascript API数组中提取phoneNumber

[英]How do I pull phoneNumber from Linkedin Javascript API array

I appreciate any help with those familiar with the LinkedIn JavaScript API. 感谢您对那些熟悉LinkedIn JavaScript API的人的帮助。 Question: How do I pull in the phone number and email from the field array. 问题:如何从字段数组中提取电话号码和电子邮件。 In my example, posted to a php script, both phoneNumber and emailAddress are undefined when set to $_POST[''];: 在我的示例中,发布到php脚本中时,设置为$ _POST [''];时,phoneNumber和emailAddress均未定义:

<script type="text/javascript">
  //Runs when the JavaScript framework is loaded
function onLinkedInLoad() {
IN.UI.Authorize().params({"scope":["r_fullprofile", "r_emailaddress", "r_contactinfo"]}).place();
IN.Event.on(IN, "auth", onLinkedInAuth);
 }

  //Runs when the viewer has authenticated
  function onLinkedInAuth() {

   IN.API.Profile("me").fields("id,firstName,lastName,phoneNumbers,emailAddress,positions").result(displayProfiles);

}

 // 2. Runs when the Profile() API call  returns successfully
  function displayProfiles(profiles) {
var p = profiles.values[0]; 

var phone = profiles.values[0].phoneNumbers;

for (var i in p.positions.values) {
    var pos = p.positions.values[i];
    if (pos.isCurrent)
        var company = pos.company.name;
}

 //AJAX call to pass back vars to server
var http = new XMLHttpRequest();
var postdata= "id=" + p.id + "&fName=" + p.firstName + "&lName=" + p.lastName + "&phone=" + phone + "&email1=" + p.emailAddress + "&company=" + company;
http.open("POST", "../inc/linkedin.php", true);

use fields like this http://developer.linkedin.com/documents/profile-fields Try this... 使用像这样的字段http://developer.linkedin.com/documents/profile-fields尝试一下...

IN.API.Profile("me")
        .fields('id,email-address,first-name,last-name,date-of-birth,phone-numbers,positions,num-connections')
        .result(displayProfiles)
        .error(displayErrors);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM