我希望通过Windows窗体应用程序获取所有联系人。
我知道我可以使用这样的东西:
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
new[] { ????? },
"user",
CancellationToken.None,
new FileDataStore("Contacts.Auth.Store")).Result;
与example for the books API或“驱动器”API完全相同:
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
new[] { DriveService.Scope.Drive,
DriveService.Scope.DriveFile },
"user", CancellationToken.None,
new FileDataStore("Drive.Auth.Store")).Result;
但我的问题是应该在??? (因为我找不到.Net联系人库here
google.apis.contacts*
汇编在哪里?
答案 0 :(得分:1)
我认为您正在寻找的遗失图书馆是:https://code.google.com/p/google-gdata/
它是一个库中的所有GData API(其中Contacts API是一个)。