在本地和GAE上使用谷歌共享联系人api

时间:2009-10-29 09:33:53

标签: python google-app-engine contacts google-api

我在使用google contacts api创建共享联系人时发现了一些奇怪的事情。 这是我用来创建联系人的代码:

def AddEmail(name ,email):
   new_contact = gdata.contacts.ContactEntry(title=atom.Title(text=name))
   new_contact.email.append(gdata.contacts.Email(address=email,
                                           primary='true',
                                           rel=gdata.contacts.REL_WORK))
   create_contact = gd_client.CreateContact(new_contact)
   print create_contact.link[2].href

当然有钥匙,帐户和东西,所以它的工作原理。奇怪 当我在本地运行它时保存为某些* .py文件, print create_contact.link[2].href实际打印出联系人的编辑链接。当我在GAE上部署它时 结果是链接到联系但不编辑链接,就像我会使用print create_contact.link。代码保持不变,我使用self.response.out.write虽然在GAE上用于测试目的但最终它应该转到数据存储区。 我没有看到差异,我错过了什么?我不知道的 GAE?

0 个答案:

没有答案