Copy File ( gdrive)
One script reply has been approved by the moderators Verified

Created by rossmccrann 240 days ago Viewed 94 times 1 Point

No comments yet

Login to be able to comment
Points: 0
deno
One script reply has been approved by the moderators
Ap­pro­ved
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 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 240 days ago

Edited 24 days ago

No comments yet

Login to be able to comment