From bd65dfaf8ff188e0071556e00b06f331f3d51b18 Mon Sep 17 00:00:00 2001 From: work Date: Thu, 22 May 2025 16:12:14 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A9=E7=94=9F=E4=BA=A7=E7=8E=AF=E5=A2=83?= =?UTF-8?q?=E4=B8=8D=E8=B7=91=E7=99=BB=E5=BD=95=E8=B4=A6=E5=8F=B7=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 4a6c204..02de29b 100644 --- a/main.py +++ b/main.py @@ -22,7 +22,11 @@ def get_task(): header = { 'Content-Type': 'application/json' } - response = requests.post(url, headers=header) + data = { + "include_task_type": [], + "exclude_task_type": ["login_account"], + } + response = requests.post(url, headers=header, json=data) if response.status_code == 200: result = response.json() return result