google-calendar-api

How to read reminders in google calendars

痴心易碎 提交于 2019-12-21 09:28:43
问题 I'm trying to read the reminders set by the user. What I mean with "reminder": currently there are two different meaning, the first one is the "alert" related to each event in the calendar and you can read them from CalendarContract.Reminders , the second one are unrelated events inserted by the user via Google Now with "remember me to...." or via Google Calendar app with insert reminder action. I'm talking about the second one. I'm reading from the event table CalendarContract.Events .

List of acceptable Google Calendar api time zones

♀尐吖头ヾ 提交于 2019-12-21 07:58:50
问题 I'm working with Google's Calendar API, and I'm running into a bit of an issue. When I set the dateTime of an event I insert, I'm required to set the hour offset, but because o DST, it's off an hour. There is a property I can set for the calendar to set the timezone by name, which I would think would fix my problem, because Google would figure out the correct hour offset. However I do not know all of them, nor can I find a place that lists them. For example "America/Los_Angeles" or "Europe

Google Calendar API stops Django from starting

浪尽此生 提交于 2019-12-21 07:57:18
问题 I have a Django (1.9.1) project that was working just fine until I added the code provided by Google Calendar API documentation to one of my apps. This code also works fine in my virtual env when I run it in standalone mode, but when I try to use the code inside the Django project I get this message when I run "python manage.py runserver": ./manage.py runserver Performing system checks... usage: manage.py [-h] [--auth_host_name AUTH_HOST_NAME] [--noauth_local_webserver] [--auth_host_port

Python solution to parse Google calendar's recurrencies

南楼画角 提交于 2019-12-21 05:44:19
问题 I'm trying to parse GCal's recurrence field. Usually, it looks like this: DTSTART;TZID=Europe/Kiev:20101111T140000 DTEND;TZID=Europe/Kiev:20101111T150000 RRULE:FREQ=DAILY;UNTIL=20101112T120000Z BEGIN:VTIMEZONE TZID:Europe/Kiev X-LIC-LOCATION:Europe/Kiev BEGIN:DAYLIGHT TZOFFSETFROM:+0200 TZOFFSETTO:+0300 TZNAME:EEST DTSTART:19700329T030000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0300 TZOFFSETTO:+0200 TZNAME:EET DTSTART:19701025T040000 RRULE:FREQ=YEARLY

how to create an event on google calendar using php

走远了吗. 提交于 2019-12-21 02:59:17
问题 am trying to sync. events from my website to google * calendar * after user give me a permission to write on calendar . am using PHP , google calendar API not zend framword 回答1: Have you tried to read the reference? Using quickAdd (which creates an event based on a simple string) https://developers.google.com/google-apps/calendar/v3/reference/events/quickAdd require_once 'google-api-php-client/src/Google_Client.php'; require_once 'google-api-php-client/src/contrib/Google_CalendarService.php';

Google Calendar API calendar id and event id

爷,独闯天下 提交于 2019-12-20 19:10:14
问题 I am learning on how to access google calendar API for creating and accessing events. I am trying to understand API using OAuth 2.0 Playground. I am struggling on what to set for calendarid and eventid https://www.googleapis.com/calendar/v3/calendars/{calendarId}/events/{eventId} Can any one guide me. Regards, Sureshkumar Menon 回答1: calendarId is the email address of your calendar. If you're just using your own, then use the string "primary". eventId is the ID of the event that you want to

How to create a drop down view like Google Calendar using Toolbar?

醉酒当歌 提交于 2019-12-20 08:45:16
问题 I am trying to create something similar to Google Calendar drop down month widget. Any help would be really appreciated. So far I have an idea that I need to use Toolbar with expandable animation but not sure that's the right direction to move into. 回答1: I was also trying to create something similar to the Google Calendar app. I've come with this implementation: I use the CompactCalendarView library for the month widget. And CollapsingToolbarLayout for the drop down. You can view the source

How do I authorize a service account for Google Calendar API in Ruby?

ぐ巨炮叔叔 提交于 2019-12-20 06:31:27
问题 How do I authorize a service account for Google Calendar API in Ruby? I tried the quick start guide, but it crashed. https://developers.google.com/calendar/quickstart/ruby#step_3_set_up_the_sample quickstart.rb require 'google/apis/calendar_v3' require 'googleauth' require 'googleauth/stores/file_token_store' require 'fileutils' OOB_URI = 'urn:ietf:wg:oauth:2.0:oob'.freeze APPLICATION_NAME = 'Google Calendar API Ruby Quickstart'.freeze CLIENT_SECRETS_PATH = 'client_secrets.json'.freeze

google-api-java-client for Google Calendar on Android Infinite loop

会有一股神秘感。 提交于 2019-12-20 06:25:54
问题 I have been struggling with the sample android application provided by Google for integrating some Google calendar functionality found here at Google code. I've modified the original code just a tad. Specifically, in the CalendarAndroidSample.java class at line 326 I've modified: CalendarUrl url = CalendarUrl.forAllCalendarsFeed(); to now compute: CalendarUrl url = CalendarUrl.forEventFeed(settings.getString("accountName", "NULL"), "private", "full"); This fills the listview with all of the

Google Calendar API: How to create/edit/delete events without Google password?

旧巷老猫 提交于 2019-12-20 06:12:04
问题 I have an application, which reads/edits/deletes events in Google Calendar. Now it is necessary to enter Google user name and password for doing this. However, this is a problem: Many users are afraid of giving away the password. Question: Is there a way to get access to the events in Google Calendar without asking the user for his/her Google password (i. e. via OAuth) ? Thanks in advance Dmitri P. S.: The appication is written in Java. 回答1: I haven't used it, but there's an api for using