本文介绍了以编程方式添加“新自定义字段"使用 Google 联系人 API 转到 Google 通讯录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用 Google Contact API (c#) 在 Google Contact 中创建新的自定义字段"?

How to create new "Custom Field into Google Contact using Google Contact API (c#)?

我用过:

ExtendedProperty obj_ExtendedProperty = new ExtendedProperty();
 obj_ExtendedProperty.Name             = "Department";
 obj_ExtendedProperty.Value            = "Sales";
 ContactEntry.ExtendedProperties.Add(obj_ExtendedProperty);

谢谢

推荐答案

查看 ContactEntry 类以及如何更新它.

检索您的联系人:

RequestSettings rs = new RequestSettings(this.ApplicationName, this.userName,this.passWord);
ContactsRequest cr = new ContactsRequest(rs);
Contact contact = cr.Retrieve<Contact>("http://www.google.com/m8/feeds/contacts/[email protected]/full/12345");

更新您的联系人:

UserDefinedField customField= new UserDefinedField("yourFieldName","yourFieldValue);
contact.addUserDefinedField(customField);
Contact updatedContact = cr.Update(contact);

这篇关于以编程方式添加“新自定义字段"使用 Google 联系人 API 转到 Google 通讯录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 04:13