Edits history of script submission #26 for ' Send any HTTP Request (http)'

  • deno
    export async function main(url: string, request_type: string) {
      const req = new Request(url, {
        method: request_type,
      });
      let resp = await fetch(req);
    
      return { response: await resp.text() };
    }
    

    Submitted by hugo697 406 days ago

  • deno
    export async function main(url: string, request_type: string) {
      const req = new Request(url, {
        method: request_type,
      });
      let resp = await fetch(req);
    
      return { response: await resp.text() };
    }
    

    Submitted by admin 1039 days ago

  • deno
    export async function main(url: string, request_type: string) {
      const req = new Request(url, {
        method: request_type,
      });
      let resp = await fetch(req);
    
      return { response: await resp.text() };
    }

    Submitted by rossmccrann 1441 days ago