Posts

Showing posts with the label google-calendar-api3

Google Calendar Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup

Google Calendar Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup So I am trying to work with some code that takes a ical file and syncs it to my google calendar. The code I am using as a base can be found here. However, I seem to be get errors in the code that would make me believe that I am having trouble authenticating my credentials. Below is the code I use for authenticating: def get_credentials(): store = Storage(CREDENTIAL_PATH) credentials = store.get() if not credentials or credentials.invalid: flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES) flow.user_agent = APPLICATION_NAME credentials = tools.run_flow(flow, store, None) return credentials credentials = get_credentials() http = credentials.authorize(httplib2.Http()) service = discovery.build('calendar', 'v3', http=http) service.events().update(calendarId=CALENDAR_ID, eventId=gcal_event['id'],body=gcal_event).execute() The error I get i...