1
Get Calendar Metadata
One script reply has been approved by the moderators Verified
Created by rossmccrann 640 days ago Viewed 5000 times
0
Submitted by rossmccrann Deno
Verified 640 days ago
1
type Gcal = {
2
  token: string;
3
};
4
export async function main(gcal_auth: Gcal, calendarId: string) {
5
  const CALENDAR_LIST_URL = `https://www.googleapis.com/calendar/v3/calendars/${calendarId}`;
6

7
  const token = gcal_auth["token"];
8

9
  const response = await fetch(CALENDAR_LIST_URL, {
10
    method: "GET",
11
    headers: {
12
      Authorization: "Bearer " + token,
13
      "Content-Type": "application/json",
14
    },
15
  });
16

17
  const result = await response.json();
18

19
  return result;
20
}
21