Following the docs and examples we have successfully integrated
ability to read/write to Google Calendar from our app. We needed it
to work within a Google Apps domain and have successfully done this.
However, each person in the domain needs to agree to having the app
talk to their calendar.
Other applications I've used, this only needs to be done once by the
domain admin.
Is it done in another way?
We've followed the example calendarer application and the code is
essentially this
self.calendar_client = gdata.calendar.service.CalendarService()
gdata.alt.appengine.run_on_appengine(self.calendar_client)
auth_token =
gdata.auth.extract_auth_sub_token_from_url(self.request.uri)
if auth_token:
self.calendar_client.SetAuthSubToken(
self.calendar_client.upgrade_to_session_token(auth_token))
if not isinstance(self.calendar_client.token_store.find_token(
'http://www.google.com/calendar/feeds/'),
gdata.auth.AuthSubToken):
token_request_url = gdata.auth.generate_auth_sub_url(
self.request.uri,
('http://www.google.com/calendar/feeds/',),
domain=THISDOMAIN)
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.