| ▲ | xd1936 2 hours ago | |
There are several ways to get all events for the day! The easiest one in my experience has been to write a simple Apps Script project and expose that as a published Web App[1]. That moves all of the oAuth logic and Calendar API plumbing to Google's server-side code, and gives you a simple long URL that contains exactly what data you want. Something like: ``` function doGet(req) {
}``` | ||
| ▲ | IshKebab an hour ago | parent [-] | |
Ooo sweet, thanks for the hint! | ||