Spaces:
Running
on
Zero
Running
on
Zero
fda
Browse files- command/n8n.py +2 -2
command/n8n.py
CHANGED
@@ -10,8 +10,8 @@ def post_data_line(url, body,headers):
|
|
10 |
#}
|
11 |
|
12 |
# POSTリクエストの送信
|
13 |
-
response = requests.post(url, json=payload, headers=headers)
|
14 |
-
|
15 |
# レスポンスのステータスコードを表示
|
16 |
print(f'Status Code: {response.status_code}')
|
17 |
|
|
|
10 |
#}
|
11 |
|
12 |
# POSTリクエストの送信
|
13 |
+
#response = requests.post(url, json=payload, headers=headers)
|
14 |
+
response = requests.post(url, headers=headers, data=body)
|
15 |
# レスポンスのステータスコードを表示
|
16 |
print(f'Status Code: {response.status_code}')
|
17 |
|