您不需要服务帐户,但使用一个可能有用。App Engine 上的服务帐户存在一些棘手的问题,详情请参阅库的报告问题。尝试使用Google APIs explorer看看是否有助于阐明如何使用 API。
只要您使用有权访问这些日历的帐户授权应用程序,您就可以访问它们,无论这是否在 Google App Engine 上。
在这里使用OAuth2Decorator
是你最好的选择。如果你给出一个具体的例子,我很乐意提供一些代码片段来完成这项任务。
请参阅最近提出的类似问题:如何登录 appengine 中的任意用户以与 Drive SDK 一起使用?这似乎是您的用例,除了您想使用 Calendar API 而不是 Drive API。
更新:
在阅读了您的另一篇文章(如果我是您,我会考虑关闭)之后,我拼凑了一个示例,可以帮助您了解如何使用装饰器。
首先,使用您的凭据,以便您的应用可以让用户对其进行授权:
from apiclient.discovery import build
import json
from oauth2client.appengine import OAuth2Decorator
import webapp2
decorator = OAuth2Decorator(
client_id='your_client_id',
client_secret='your_client_secret',
scope='https://www.googleapis.com/auth/calendar')
service = build('calendar', 'v3')
然后您的主页将确保您的用户已登录,并且@decorator.oauth_required
装饰器会将 OAuth 2.0 令牌保存在您的数据存储中。
class MainPage(webapp2.RequestHandler):
@decorator.oauth_required
def get(self):
# This will force the user to go through OAuth
self.response.write(...)
# show some page to them
在您向他们显示的页面上,您可能会有一个表单,POST
并且/add-event
此AddEvent
处理程序将能够使用令牌来发出请求。而不是使用oauth_required
我们使用@decorator.oauth_aware
来允许优雅的失败。如果 App Engine cookie 从他们的浏览器会话(如果他们POST
来自表单)的请求中检测到用户,那么您的应用将在发出经过身份验证的日历请求之前从您的数据存储区查找 OAuth 2.0 凭据。
class AddEvent(webapp2.RequestHandler):
@decorator.oauth_aware
def post(self):
if decorator.has_credentials():
event_name = self.request.get('event-name')
some_event = {...} # Create event here
# Documented at
# https://developers.google.com/google-apps/calendar/v3/reference/events/insert
http = decorator.http()
# Using 'primary' will insert the event for the current user
request = service.events().insert(calendarId='primary', body=some_event)
inserted = request.execute(http=http)
self.response.write(json.dumps(inserted))
else:
self.response.write(json.dumps({'error': 'No credentials'})
最后,为了确保所有这些路由都能正常工作,您需要为每个处理程序和装饰器使用的 OAuth 2.0 处理程序定义路由:
app = webapp2.WSGIApplication([
('/', MainPage),
('/add-event', AddEvent),
(decorator.callback_path, decorator.callback_handler())
],
debug=True)
额外参考:
https://developers.google.com/api-client-library/python/platforms/google_app_engine
https://developers.google.com/google-apps/calendar/v3/reference/events/insert