Created by rossmccrann 241 days ago Viewed 112 times 1 Point
No comments yet
import * as wmill from "https://deno.land/x/windmill@v1.70.1/mod.ts";
export async function main(
gcal_auth: wmill.Resource<"gcal">,
calendarId: string,
) {
const LIST_EVENTS_URL =
`https://www.googleapis.com/calendar/v3/calendars/${calendarId}/events`;
const token = gcal_auth["token"];
const response = await fetch(LIST_EVENTS_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
No comments yet