type Gdrive = {
token: string;
};
export async function main(
gdrive_auth: Gdrive,
driveId: string,
useDomainAdminAccess: boolean = false,
) {
const GET_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
const token = gdrive_auth["token"];
const response = await fetch(GET_SHARED_DRIVE_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by hugo697 232 days ago
type Gdrive = {
token: string;
};
export async function main(
gdrive_auth: Gdrive,
driveId: string,
useDomainAdminAccess: boolean = false,
) {
const GET_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
const token = gdrive_auth["token"];
const response = await fetch(GET_SHARED_DRIVE_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by admin 864 days ago
type Gdrive = {
token: string;
};
export async function main(
gdrive_auth: Gdrive,
driveId: string,
useDomainAdminAccess: boolean = false,
) {
const GET_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
const token = gdrive_auth["token"];
const response = await fetch(GET_SHARED_DRIVE_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
} Submitted by admin 868 days ago
import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
export async function main(
gdrive_auth: wmill.Resource<"gdrive">,
driveId: string,
useDomainAdminAccess: boolean = false,
) {
const GET_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
const token = gdrive_auth["token"];
const response = await fetch(GET_SHARED_DRIVE_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
} Submitted by adam186 996 days ago
import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
export async function main(
gdrive_auth: wmill.Resource<"gdrive">,
driveId: string,
useDomainAdminAccess: boolean = false,
) {
const GET_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
const token = gdrive_auth["token"];
const response = await fetch(GET_SHARED_DRIVE_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
} Submitted by adam186 1031 days ago
import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
export async function main(
gdrive_auth: wmill.Resource<"gdrive">,
driveId: string,
useDomainAdminAccess: boolean = false,
) {
const GET_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
const token = gdrive_auth["token"];
const response = await fetch(GET_SHARED_DRIVE_URL, {
method: "GET",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
} Submitted by rossmccrann 1247 days ago