Edits history of script submission #56 for ' Append Text (gdocs)'

  • deno
    type Gdocs = {
      token: string;
    };
    export async function main(
      gdocs_auth: Gdocs,
      documentId: string,
      text: string,
    ) {
      const token = gdocs_auth["token"];
    
      const APPEND_TEXT_URL = `https://docs.googleapis.com/v1/documents/${documentId}:batchUpdate`;
    
      const body = {
        requests: [
          {
            insertText: { text },
          },
        ],
      };
      const response = await fetch(APPEND_TEXT_URL, {
        method: "POST",
        body: JSON.stringify(body),
        headers: {
          Authorization: "Bearer " + token,
          "Content-Type": "application/json",
        },
      });
    
      return await response.text();
    }
    

    Submitted by hugo697 398 days ago

  • deno
    type Gdocs = {
      token: string;
    };
    export async function main(
      gdocs_auth: Gdocs,
      documentId: string,
      text: string,
    ) {
      const token = gdocs_auth["token"];
    
      const APPEND_TEXT_URL = `https://docs.googleapis.com/v1/documents/${documentId}:batchUpdate`;
    
      const body = {
        requests: [
          {
            insertText: { text },
          },
        ],
      };
      const response = await fetch(APPEND_TEXT_URL, {
        method: "POST",
        body: JSON.stringify(body),
        headers: {
          Authorization: "Bearer " + token,
          "Content-Type": "application/json",
        },
      });
    
      return await response.text();
    }
    

    Submitted by admin 1031 days ago

  • deno
    
    type Gdocs = {
      token: string;
    };
    export async function main(
        gdocs_auth: Gdocs,
        documentId: string,
        text: string,
    ) {
        const token = gdocs_auth["token"];
    
        const APPEND_TEXT_URL =
            `https://docs.googleapis.com/v1/documents/${documentId}:batchUpdate`;
    
        const body = {
            "requests": [
                {
                    "insertText": { text }
                }
            ]
        };
        const response = await fetch(APPEND_TEXT_URL, {
            method: "POST",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    Submitted by admin 1034 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(
        gdocs_auth: wmill.Resource<"gdocs">,
        documentId: string,
        text: string,
    ) {
        const token = gdocs_auth["token"];
    
        const APPEND_TEXT_URL =
            `https://docs.googleapis.com/v1/documents/${documentId}:batchUpdate`;
    
        const body = {
            "requests": [
                {
                    "insertText": { text }
                }
            ]
        };
        const response = await fetch(APPEND_TEXT_URL, {
            method: "POST",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    Submitted by adam186 1162 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(
        gdocs_auth: wmill.Resource<"gdocs">,
        documentId: string,
        text: string,
    ) {
        const token = gdocs_auth["token"];
    
        const APPEND_TEXT_URL =
            `https://docs.googleapis.com/v1/documents/${documentId}:batchUpdate`;
    
        const body = {
            "requests": [
                {
                    "insertText": { text }
                }
            ]
        };
        const response = await fetch(APPEND_TEXT_URL, {
            method: "POST",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    Submitted by adam186 1197 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(
        gdocs_auth: wmill.Resource<"gdocs">,
        documentId: string,
        text: string,
    ) {
        const token = gdocs_auth["token"];
    
        const APPEND_TEXT_URL =
            `https://docs.googleapis.com/v1/documents/${documentId}:batchUpdate`;
    
        const body = {
            "requests": [
                {
                    "insertText": { text }
                }
            ]
        };
        const response = await fetch(APPEND_TEXT_URL, {
            method: "POST",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    Submitted by rossmccrann 1413 days ago