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