1 | type Gcal = { |
2 | token: string; |
3 | }; |
4 | export async function main(gcal_auth: Gcal) { |
5 | const CALENDAR_LIST_URL = `https://www.googleapis.com/calendar/v3/users/me/calendarList`; |
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 |
|