Edits history of script submission #22386 for ' Get Shared Drive (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,
      driveId: string,
      useDomainAdminAccess: boolean = false,
    ) {
      const GET_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
    
      const token = gdrive_auth["token"];
    
      const response = await fetch(GET_SHARED_DRIVE_URL, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + token,
          "Content-Type": "application/json",
        },
      });
    
      return await response.text();
    }
    

    Submitted by hugo989 7 days ago