Hello everybody.
I have a problem when I try to received the CCR:

                        HealthQuery profileQuery = new HealthQuery
("https://www.google.com/health/feeds/profile/ui/"; + pid);
                        profileQuery.Digest = true;
                        HealthFeed feed = service.Query(profileQuery);

                        foreach (HealthEntry entry in feed.Entries)
                               {
                                   XmlNode ccr = entry.CCR;

                              }


==> entry.CCR is null !!!
I only can access to my profile infos like that :


                        AtomFeed feed = service.Query(new HealthQuery
("https://www.google.com/health/feeds/profile/ui/"; + pid));
                        foreach (AtomEntry entry in feed.Entries)
                        {
                            Console.WriteLine(".... viewing entry
title : " + entry.Title.Text);
                        }


But I don't find the CCR :(
Any suggestions? Thanks a lot ;)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to