2

尝试在下面添加联系人是来自 api 的示例代码, 我在哪里可以获得所有有效字段,如组织等以及一些示例 python 代码?

new_contact = gdata.contacts.ContactEntry(title=atom.Title(text=name))
new_contact.content = atom.Content(text=notes)
# Create a work email address for the contact and use as primary.
new_contact.email.append(gdata.contacts.Email(address=primary_email,
    primary='true', rel=gdata.contacts.REL_WORK))
# Add extended properties to add data which is used in your application.
new_contact.extended_property.append(gdata.ExtendedProperty(
    name='favourite flower', value='daisy'))
sports_property = gdata.ExtendedProperty(name='sports')
sports_property.SetXmlBlob('<dance><salsa/><ballroom_dancing/></dance>')
new_contact.extended_property.append(sports_property)

# Send the contact data to the server.
contact_entry = gd_client.CreateContact(new_contact)
4

1 回答 1

0

gdata-python-client 源代码中有一个非常完整的属性列表(请参阅PersonEntryContactEntry类)以及一些使用客户端的示例代码

于 2011-05-17T18:43:58.070 回答