From 78ea929c9361275b7efe8bb9b9f1c675f54d086e Mon Sep 17 00:00:00 2001 From: conlan0 <87742085+conlan0@users.noreply.github.com> Date: Thu, 25 Jul 2024 15:25:58 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Send=20request=20body=20as=20dat?= =?UTF-8?q?a=20instead=20of=20json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/cors-proxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/cors-proxy.js b/services/cors-proxy.js index 9c51214c..e1c9a8b6 100644 --- a/services/cors-proxy.js +++ b/services/cors-proxy.js @@ -33,7 +33,7 @@ module.exports = (req, res) => { const requestConfig = { method: req.method, url: targetURL, - json: req.body, + data: req.body, headers, };