Skip to content

Instantly share code, notes, and snippets.

@crazy4pi314
Created June 12, 2023 19:28
Show Gist options
  • Save crazy4pi314/ecd34a8f19f8c27282f92ec57546bcf0 to your computer and use it in GitHub Desktop.
Save crazy4pi314/ecd34a8f19f8c27282f92ec57546bcf0 to your computer and use it in GitHub Desktop.
How to get ical feed from embedded Google calendar
  1. On the page with the embedded calendar you want the ical feed for, you use browser tools to inspect the page. Find the iframe element for the calenar and look for the src property:

image

2. Copy that src url and then use the tip [here](https://stackoverflow.com/questions/30766477/google-calendar-ical-url-for-public-calendar) to transform it:

the src address in an embed link - either email or calendar group account (randomhash@group.calendar.google.com) - is part of the ical url

https://calendar.google.com/calendar/embed?src=**info@example.com**

to

https://calendar.google.com/calendar/ical/**info@example.com**/public/basic.ics

  1. Paste the ical feed into whatever reader/other app than Google that you use for calendaring :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment