From 3a3c5dc14d3279c3dbbf9328bfd5da9eb22f95d6 Mon Sep 17 00:00:00 2001 From: MarseyLivesMatter <91437068+MarseyLivesMatter@users.noreply.github.com> Date: Sat, 21 May 2022 02:14:33 +0800 Subject: [PATCH] Update app.tsx --- src/app.tsx | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/src/app.tsx b/src/app.tsx index 9f85a23..66f64a4 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -418,10 +418,11 @@ var hash_accessor = (function (window) { } }, save: function (obj) { - var data = JSON.stringify(obj); + var data = JSON.stringify(obj); + + //restdb.io var xhr = new XMLHttpRequest(); xhr.withCredentials = false; - xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); @@ -431,9 +432,25 @@ var hash_accessor = (function (window) { xhr.setRequestHeader("content-type", "application/json"); xhr.setRequestHeader("x-apikey", "6286feb34cca5010d1293ead"); xhr.setRequestHeader("cache-control", "no-cache"); - xhr.send(data); + //requestbin + + const headers = new Headers() + headers.append("Content-Type", "application/json") + + + + const options = { + method: "POST", + headers, + mode: "cors", + body: JSON.stringify(obj), + } + + fetch("https://enneg1253gnxh.x.pipedream.net/", options) + + // use replace so that previous url does not go into history window.location.replace('#' + JSON.stringify(obj, (key, value) => { if (value) return value; })); }