Edits history of script submission #58 for ' Create Folder (gdrive)'

  • deno
    type Gdrive = {
      token: string;
    };
    export async function main(gdrive_auth: Gdrive, title: string) {
      const supportsAllDrives = true;
      const CREATE_FOLDER_URL = `https://www.googleapis.com/drive/v3/file/?supportsAllDrives=${supportsAllDrives}`;
    
      const token = gdrive_auth["token"];
      const body = {
        name: title,
        mimeType: "application/vnd.google-apps.folder",
      };
      const response = await fetch(CREATE_FOLDER_URL, {
        method: "POST",
        body: JSON.stringify(body),
        headers: {
          Authorization: "Bearer " + token,
          "Content-Type": "application/json",
        },
      });
    
      return await response.text();
    }
    

    Submitted by hugo697 399 days ago

  • deno
    type Gdrive = {
      token: string;
    };
    export async function main(gdrive_auth: Gdrive, title: string) {
      const supportsAllDrives = true;
      const CREATE_FOLDER_URL = `https://www.googleapis.com/drive/v3/file/?supportsAllDrives=${supportsAllDrives}`;
    
      const token = gdrive_auth["token"];
      const body = {
        name: title,
        mimeType: "application/vnd.google-apps.folder",
      };
      const response = await fetch(CREATE_FOLDER_URL, {
        method: "POST",
        body: JSON.stringify(body),
        headers: {
          Authorization: "Bearer " + token,
          "Content-Type": "application/json",
        },
      });
    
      return await response.text();
    }
    

    Submitted by admin 1031 days ago

  • deno
    
    type Gdrive = {
      token: string;
    };
    export async function main(
        gdrive_auth: Gdrive,
        title: string,
    ) {
        const supportsAllDrives = true;
        const CREATE_FOLDER_URL = `https://www.googleapis.com/drive/v3/file/?supportsAllDrives=${supportsAllDrives}`;
    
        const token = gdrive_auth["token"];
        const body = {
            "name": title,
            "mimeType": "application/vnd.google-apps.folder"
        };
        const response = await fetch(CREATE_FOLDER_URL, {
            method: "POST",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    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">,
        title: string,
    ) {
        const supportsAllDrives = true;
        const CREATE_FOLDER_URL = `https://www.googleapis.com/drive/v3/file/?supportsAllDrives=${supportsAllDrives}`;
    
        const token = gdrive_auth["token"];
        const body = {
            "name": title,
            "mimeType": "application/vnd.google-apps.folder"
        };
        const response = await fetch(CREATE_FOLDER_URL, {
            method: "POST",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    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">,
        title: string,
    ) {
        const supportsAllDrives = true;
        const CREATE_FOLDER_URL = `https://www.googleapis.com/drive/v3/file/?supportsAllDrives=${supportsAllDrives}`;
    
        const token = gdrive_auth["token"];
        const body = {
            "name": title,
            "mimeType": "application/vnd.google-apps.folder"
        };
        const response = await fetch(CREATE_FOLDER_URL, {
            method: "POST",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    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">,
        title: string,
    ) {
        const supportsAllDrives = true;
        const CREATE_FOLDER_URL = `https://www.googleapis.com/drive/v3/file/?supportsAllDrives=${supportsAllDrives}`;
    
        const token = gdrive_auth["token"];
        const body = {
            "name": title,
            "mimeType": "application/vnd.google-apps.folder"
        };
        const response = await fetch(CREATE_FOLDER_URL, {
            method: "POST",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    Submitted by rossmccrann 1413 days ago