简体   繁体   中英

How do I pull phoneNumber from Linkedin Javascript API array

I appreciate any help with those familiar with the 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[''];:

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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