Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More description of calendar identifier retrieval #110

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

12. Select the calendar you would like to synchronize with. This will take you to the "Calendar Details" page for that calendar. Near the end is a section titled "Calendar Address". Following the XML, ICAL, and HTML tags, you will see your Calendar ID.

13. Copy the Calendar ID for use in the settings below, where you will use it as the first element in the org-gcal-file-alist for associating calendars with specific org files. You can associate different calendars with different org files, so repeat this for each calendar you want to use.
13. Copy the Calendar ID for use in the settings below, where you will use it as the first element in the org-gcal-file-alist for associating calendars with specific org files. You can associate different calendars with different org files, so repeat this for each calendar you want to use. Currently, the address is found in the box entitled "{Public,Secret} address in iCal format" where the string to retrieve is that directly following the `https://calendar.google.com/calendar/ical/` address, and ending with `calendar.google.com`, e.g. `<your_cal_string>%40group.calendar.google.com`. You'll need to convert `%40` to `@`, and you can repeat this process for each individual calendar you wish to sync.

** Setting example

Expand All @@ -48,7 +48,8 @@
(setq org-gcal-client-id "your-id-foo.apps.googleusercontent.com"
org-gcal-client-secret "your-secret"
org-gcal-file-alist '(("[email protected]" . "~/schedule.org")
("[email protected]" . "~/task.org")))
("[email protected]" . "~/task.org"))
("[email protected]" . "~/another_cal.org")))
#+end_src


Expand Down