From 6aeea9dedb22ddf7eccadeeb741fc2c41f56c7b8 Mon Sep 17 00:00:00 2001 From: Namonay Date: Tue, 24 Feb 2026 13:06:48 +0000 Subject: [PATCH] add: contenttype --- client/bs_shutdown.py | 1 + 1 file changed, 1 insertion(+) diff --git a/client/bs_shutdown.py b/client/bs_shutdown.py index 130e3ee..a1870a6 100644 --- a/client/bs_shutdown.py +++ b/client/bs_shutdown.py @@ -13,6 +13,7 @@ data = json.dumps(payload).encode("utf-8") req = urllib.request.Request( url, + headers={"Content-Type": "application/json"}, data=data, method="POST" )