type Gcal = {
token: string;
};
export async function main(gcal_auth: Gcal) {
const CALENDAR_LIST_URL = `https://www.googleapis.com/calendar/v3/users/me/calendarList`;
const token = gcal_auth["token"];
const response = await fetch(CALENDAR_LIST_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by admin 466 days ago
type Gcal = {
token: string;
};
export async function main(
gcal_auth: Gcal,
) {
const CALENDAR_LIST_URL =
`https://www.googleapis.com/calendar/v3/users/me/calendarList`;
const token = gcal_auth["token"];
const response = await fetch(CALENDAR_LIST_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by admin 470 days ago
import * as wmill from "https://deno.land/x/windmill@v1.85.0/mod.ts";
export async function main(
gcal_auth: wmill.Resource<"gcal">,
) {
const CALENDAR_LIST_URL =
`https://www.googleapis.com/calendar/v3/users/me/calendarList`;
const token = gcal_auth["token"];
const response = await fetch(CALENDAR_LIST_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by adam186 598 days ago
import * as wmill from "https://deno.land/x/windmill@v1.70.1/mod.ts";
export async function main(
gcal_auth: wmill.Resource<"gcal">,
) {
const CALENDAR_LIST_URL =
`https://www.googleapis.com/calendar/v3/users/me/calendarList`;
const token = gcal_auth["token"];
const response = await fetch(CALENDAR_LIST_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by adam186 633 days ago
import * as wmill from "https://deno.land/x/windmill@v1.23.0/mod.ts";
export async function main(
gcal_auth: wmill.Resource<"gcal">,
) {
const CALENDAR_LIST_URL =
`https://www.googleapis.com/calendar/v3/users/me/calendarList`;
const token = gcal_auth["token"];
const response = await fetch(CALENDAR_LIST_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by rossmccrann 850 days ago