Google API request for extended resource

I upload contacts from the application to Google Contacts with an external code named extcod.

ExtendedProperty property = new ExtendedProperty();
property.Name = "http://www.example.com/schemas/2005#mycal.extcod";
property.Value = item["ana_id"].ToString();
newEntry.ExtendedProperties.Add(property);

Now I would like to search the extended extcod interface in Google Contacts. but I can't figure out how to use the class ContactsQueryto set up the where clause using ExtendedProperty.

+3
source share
1 answer

You will need to use the ContactQuery "Query" attribute: http://code.google.com/p/google-gdata/source/browse/trunk/clients/cs/src/core/feedquery.cs#361

q =, . API- Google Contacts v3 , . , .

,

+1

Source: https://habr.com/ru/post/1785373/


All Articles