Using python API V2.0 I want to create a calendar, then share it with a group of users (Google Apps). Group could be very large.
I am using 2L OAuth. Is there a way to just change the email address, or do I have to create a new client for each user? *IE, can I do:* for email in email: client.set_user(email) # or some similar method client.InsertCalendarSubscription(calendar) *instead of:* for email in emails: client = gdata.calendar.client.CalendarClient() client.auth_token = gdata.gauth.TwoLeggedOAuthHmacToken(key, secret, email) client.InsertCalendarSubscription(calendar) or is the latter an acceptable method of doing so? -- You received this message because you are subscribed to the Google Groups "Google Calendar Data API" 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://code.google.com/apis/calendar/community/forum.html
