//native
type Gdocs = {
token: string;
};
export async function main(gdocs_auth: Gdocs, title: string) {
const token = gdocs_auth["token"];
const body = {
title: title,
};
const CREATE_DOC_URL = `https://docs.googleapis.com/v1/documents`;
const response = await fetch(CREATE_DOC_URL, {
method: "POST",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by hugo989 7 days ago