我的Google Api通讯录问题如下:
我希望通过某些条件获取联系人,例如:如何获得经常联系的联系人。
这是我的代码:
var contacts = new List<ContactDTO>();
var query = new
ContactsQuery(ContactsQuery.CreateContactsUri("default"));
query.NumberToRetrieve = 500;
query.FeedFormat = AlternativeFormat.Atom;
//query.Query = "???"
Feed<Google.Contacts.Contact> feed = _contactsRequest.Get<Google.Contacts.Contact>(query);
我不应该使用什么查询?如何使用ContactsQuery.query?请帮我 !非常感谢!