gpt4 book ai didi

c# - 使用 Google 联系人 API 以编程方式将 "New Custom Field"添加到 Google 联系人

转载 作者:行者123 更新时间:2023-11-30 17:22:56 27 4
gpt4 key购买 nike

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

我用过:

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

谢谢

最佳答案

查看ContactEntry类(class)以及如何update it .

检索您的联系人:

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/test@gmail.com/full/12345");

更新您的联系人:

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

关于c# - 使用 Google 联系人 API 以编程方式将 "New Custom Field"添加到 Google 联系人,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2515117/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com