Edits history of script submission #22384 for ' Create Folder (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, 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 hugo989 6 days ago