type Gdrive = {
token: string;
};
export async function main(gdrive_auth: Gdrive, fileId: string) {
const supportsAllDrives = true;
const DELETE_FILE_URL = `https://www.googleapis.com/drive/v3/files/${fileId}/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(DELETE_FILE_URL, {
method: "DELETE",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by admin 479 days ago
type Gdrive = {
token: string;
};
export async function main(
gdrive_auth: Gdrive,
fileId: string,
) {
const supportsAllDrives=true;
const DELETE_FILE_URL =`https://www.googleapis.com/drive/v3/files/${fileId}/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(DELETE_FILE_URL, {
method: "DELETE",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by admin 482 days ago
import * as wmill from "https://deno.land/x/windmill@v1.85.0/mod.ts";
export async function main(
gdrive_auth: wmill.Resource<"gdrive">,
fileId: string,
) {
const supportsAllDrives=true;
const DELETE_FILE_URL =`https://www.googleapis.com/drive/v3/files/${fileId}/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(DELETE_FILE_URL, {
method: "DELETE",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by adam186 610 days ago
import * as wmill from "https://deno.land/x/windmill@v1.70.1/mod.ts";
export async function main(
gdrive_auth: wmill.Resource<"gdrive">,
fileId: string,
) {
const supportsAllDrives=true;
const DELETE_FILE_URL =`https://www.googleapis.com/drive/v3/files/${fileId}/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(DELETE_FILE_URL, {
method: "DELETE",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by adam186 645 days ago
import * as wmill from "https://deno.land/x/windmill@v1.23.0/mod.ts";
export async function main(
gdrive_auth: wmill.Resource<"gdrive">,
fileId: string,
) {
const supportsAllDrives=true;
const DELETE_FILE_URL =`https://www.googleapis.com/drive/v3/files/${fileId}/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(DELETE_FILE_URL, {
method: "DELETE",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by rossmccrann 862 days ago