0

我们正在为 Google 市场用户开发一个与 Google 日历集成的应用程序。文档https://developers.google.com/google-apps/marketplace/best_practices中的许多链接都不起作用。任何人都可以指点我为市场用户使用带有 RESTful Google Calendar API V3 的 2-Legged OAuth 工作吗?TIA, 里亚兹 .A

4

1 回答 1

0

下载以下支持 2legged oauth 的库

google-api-python-client==1.0beta4

并确保您的清单包含更新的日历(v3)范围然后

from apiclient.oauth import TwoLeggedOAuthCredentials
from apiclient.discovery import build
import httplib2

credentials = TwoLeggedOAuthCredentials(OAUTH_CONSUMER_KEY,OAUTH_CONSUMER_SECRET,'referer')
credentials.requestor = user_email
http = httplib2.Http()
http = credentials.authorize(http)
calendar_service = build('calendar', 'v3', http=http)
list = calendar_service.events().list(calendarId="primary").execute()
于 2013-10-03T10:09:37.900 回答