Edits history of script submission #59 for ' Move File to Trash (gdrive)'

  • deno
    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/v2/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 "file moved to trash";
    }
    

    Submitted by hugo697 399 days ago

  • deno
    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/v2/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 "file moved to trash";
    }
    

    Submitted by admin 1031 days ago

  • deno
    
    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/v2/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 'file moved to trash';
    }

    Submitted by admin 1034 days ago

  • deno
    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 DELETE_FILE_URL = `https://www.googleapis.com/drive/v2/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 'file moved to trash';
    }

    Submitted by adam186 1163 days ago

  • deno
    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 DELETE_FILE_URL = `https://www.googleapis.com/drive/v2/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 'file moved to trash';
    }

    Submitted by adam186 1198 days ago

  • deno
    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 DELETE_FILE_URL = `https://www.googleapis.com/drive/v2/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 'file moved to trash';
    }

    Submitted by rossmccrann 1414 days ago