4

There is a lot of different Google API dlls for .NET, for example Google.Apis.Calendar.v3. But nothing for Contacts API. Using older versions or other approaches is not a solution because I already use v3 of several APIs. I need to add a Contacts API.

Kara
  • 6,115
  • 16
  • 50
  • 57
Tan Silliksaar
  • 169
  • 1
  • 1
  • 10

1 Answers1

4

The Contacts API v3 is supported by the the .NET library for the Google Data API:

https://code.google.com/p/google-gdata/source/browse/#svn%2Ftrunk%2Fclients%2Fcs%2Fsrc%2Fgcontacts

To learn more about its usage, please check the documentation:

https://developers.google.com/google-apps/contacts/v3/

Claudio Cherubino
  • 14,896
  • 1
  • 35
  • 42
  • Well, these are all links that I know. GData uses a different approach to authorization. How can I make it work with OAuth2Authenticator and AuthorizationState? – Tan Silliksaar Sep 05 '12 at 14:42
  • Those classes are part of another library. If you want to use OAuth 2.0 check this sample: https://code.google.com/p/google-gdata/source/browse/trunk/clients/cs/samples/oauth2_sample/oauth2demo.cs – Claudio Cherubino Sep 05 '12 at 15:01
  • Why does that download still say version 2.2 if it's supposed to support version 3? – Joshua Frank Dec 04 '13 at 22:07
  • The Google GData Contacts nuget package can be found here: https://www.nuget.org/packages/Google.GData.Contacts – Aaron Hoffman Jan 12 '18 at 20:25