3

I am trying to understand this document.

But I am not getting how to implement it in my previous code which I did according to this link .

Can anyone provide me sample code to proceed with.

I am not getting how to use these XML entries.

fretje
  • 8,322
  • 2
  • 49
  • 61
Preeti
  • 1,386
  • 8
  • 57
  • 112

1 Answers1

1

The C# library you're using in your 'previous code' is a wrapper around the Google Contacts API protocol, which is the document you're trying to understand. To be more precise, it's a wrapper around the Google Data API which Google Contacts provides.

The protocol are actually REST calls which return you ATOM and/or JSON feeds. You could implement this in C# using WebRequest and WebResponse and parse the result with something like XMLReader, but why would you do that if there's already a library which does that for you?

fretje
  • 8,322
  • 2
  • 49
  • 61
  • Because there are some properties (nickname,birthdate e.t.c) which cannot created by Version 2 DLL and Version 3 is not yet released. – Preeti Mar 30 '10 at 06:29
  • Why not check out the source code, add support for the properties, and build your own version? And if you're feeling helpful, send Google a patch to support the missing properties. – Leon Breedt Apr 02 '10 at 23:42