Edits history of script submission #22383 for ' Copy File (gdrive)'

  • bunnative
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    
    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 hugo989 7 days ago