Files
gitlab-instance-0a899031_tg…/test.py
hackrobot 4ef917c9f1 update
2024-07-18 09:31:47 +08:00

11 lines
275 B
Python

import requests
# url = "http://127.0.0.1:8000/send_message"
url = "http://192.168.31.38:8521/send_message"
data = {"message": "Hello, World!"}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=data, headers=headers)
print(response.json())