type Gdrive = {
token: string;
};
export async function main(gdrive_auth: Gdrive, fileId: string) {
const supportsAllDrives = true;
const COPY_FILE_URL = `https://www.googleapis.com/drive/v3/files/${fileId}/copy/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(COPY_FILE_URL, {
method: "POST",
//body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by hugo697 226 days ago
type Gdrive = {
token: string;
};
export async function main(gdrive_auth: Gdrive, fileId: string) {
const supportsAllDrives = true;
const COPY_FILE_URL = `https://www.googleapis.com/drive/v3/files/${fileId}/copy/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(COPY_FILE_URL, {
method: "POST",
//body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by admin 858 days ago
type Gdrive = {
token: string;
};
export async function main(
gdrive_auth: Gdrive,
fileId: string,
) {
const supportsAllDrives = true;
const COPY_FILE_URL = `https://www.googleapis.com/drive/v3/files/${fileId}/copy/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(COPY_FILE_URL, {
method: "POST",
//body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
} Submitted by admin 862 days ago
import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
export async function main(
gdrive_auth: wmill.Resource<"gdrive">,
fileId: string,
) {
const supportsAllDrives = true;
const COPY_FILE_URL = `https://www.googleapis.com/drive/v3/files/${fileId}/copy/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(COPY_FILE_URL, {
method: "POST",
//body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
} Submitted by adam186 990 days ago
import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
export async function main(
gdrive_auth: wmill.Resource<"gdrive">,
fileId: string,
) {
const supportsAllDrives = true;
const COPY_FILE_URL = `https://www.googleapis.com/drive/v3/files/${fileId}/copy/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(COPY_FILE_URL, {
method: "POST",
//body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
} Submitted by adam186 1025 days ago
import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
export async function main(
gdrive_auth: wmill.Resource<"gdrive">,
fileId: string,
) {
const supportsAllDrives = true;
const COPY_FILE_URL = `https://www.googleapis.com/drive/v3/files/${fileId}/copy/?supportsAllDrives=${supportsAllDrives}`;
const token = gdrive_auth["token"];
const response = await fetch(COPY_FILE_URL, {
method: "POST",
//body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
} Submitted by rossmccrann 1241 days ago