写一段程序 向 http://121.36.111.13:8021/otherRoute/getWorkerList 发送json
时间: 2024-10-07 16:02:32 浏览: 18
Open with http://json.parser.online.fr/-crx插件
在Python中,你可以使用`requests`库来发送HTTP请求。这里是一个简单的示例,向指定URL发送JSON数据:
```python
import requests
import json
# 定义你要发送的JSON数据
data = {
"key": "value", # 根据实际情况替换为你的数据内容
}
# 将字典转换为JSON格式
json_data = json.dumps(data)
# 设置请求头,因为有些服务器需要Content-Type为application/json
headers = {'Content-Type': 'application/json'}
# 发送POST请求
response = requests.post('http://121.36.111.13:8021/otherRoute/getWorkerList', data=json_data, headers=headers)
# 检查响应状态码
if response.status_code == 200:
print("请求成功,返回的数据:")
print(response.json())
else:
print(f"请求失败,状态码:{response.status_code}")
阅读全文