//native
type Gdrive = {
token: string;
};
export async function main(
gdrive_auth: Gdrive,
requestId: string,
drive_name: string,
) {
const supportsAllDrives = true;
const CREATE_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/?requestId=${requestId}`;
const token = gdrive_auth["token"];
const body = {
name: drive_name,
};
const response = await fetch(CREATE_SHARED_DRIVE_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