我的平台是Asp.net。我是 Google Data API(GData)的新手。我正在使用此代码向现有组添加新联系人。
public Contact AddContactToGoolgeGroup(GoogleContactsGroup group, Contact googleContact)
{
googleContact.GroupMembership.Add(new GroupMembership { HRef = group.GoogleContactGroupId });
var feedUri = new Uri(ContactsQuery.CreateContactsUri("default"));
return _contactsRequest.Insert(feedUri, googleContact);
}
此代码可以添加新联系人。
但我想将现有联系人添加到多个组或单个组。我是怎么做到的我使用了这段代码但没有工作。
googleContact.GroupMembership.Add(new GroupMembership { HRef = group.GoogleContactGroupId });
_contactsRequest.Update(googleContact);
感谢。