appengine oauth2decorater联系api serviceName

时间:2012-04-23 23:22:28

标签: python google-app-engine oauth google-api-python-client

我已经探索过文档,但是找不到serviceName来构建用于处理联系人API的服务对象。

1 个答案:

答案 0 :(得分:1)

您是否尝试使用Google通讯录API:https://developers.google.com/google-apps/contacts/v3/?如果是这样,请查看python http://code.google.com/p/gdata-python-client/source/browse/samples/contacts/contacts_example.py的示例代码,其中显示了如何通过Google API客户端库进行访问。由于此API是gdata API,因此它看起来与通常遵循

的其他Google API的代码略有不同
from apiclient.discovery import build
...
service = build("plus or some other service name here", "v1", http=http)

模式,这听起来像你在寻找。

希望这有帮助!