Adding company info
-
I notice that in the get_linked_in function you request the company for each position
$xml = simplexml_load_string($this->oauth->get('https://api.linkedin.com/v1/people/~:(id,first-name,last-name,email-address,headline,specialties,positions:(id,title,summary,start-date,end-date,is-current,company),summary,site-standard-profile-request,picture-url,location:(name,country:(code)),industry)'));
But in update_user_data you don’t store the company.
foreach ($xml->positions->position as $position) { $user_positions[] = array('title' => (string) $position->{'title'}, 'summary' => (string) $position->{'summary'}); }
If I were to submit a patch that stored the full data for the position, would you take it?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Adding company info’ is closed to new replies.