I use Zend Framework to extract CCR for google health. But I couldn't
figure out how to retrieve the date of birth, and gender,etc.
information. I read the previous post, it told that I can't use
getDemographics() since there's no explicit Demographics CCR element.
And also if I use the below code as suggested in that post
http://groups.google.com/group/googlehealthdevelopers/browse_thread/thread/628033737efc7a83
foreach ($profileFeed->entry as $entry) {
$actors= $entry->getCcr()->getActors();
foreach ($actors as $actor) {
$xmlStr = $actor->ownerDocument->saveXML($actor);
echo "<p>" . xmlpp($xmlStr) . "</p>";
}
}
The returned information does not include DOB and gender.
Anyone any suggestions how I can do?
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Health Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/googlehealthdevelopers?hl=en
-~----------~----~----~----~------~----~------~--~---