如何将数据传递给urllib3 POST 请求方法?
How to pass data to urllib3 POST request method?
我想使用 urllib3
库对 requests
库发出 POST 请求,因为它有连接池和重试等功能。但我做不到
找到以下 POST
请求的任何替代品。
import requests
result = requests.post("http://myhost:8000/api/v1/edges", json={'node_id1':"VLTTKeV-ixhcGgq53", 'node_id2':"VLTTKeV-ixhcGgq51", 'type': 1 })
这在 requests
库中运行良好,但我无法将其转换为 urllib3
请求。
我试过了
import json
import urllib3
urllib3.PoolManager().request("POST","http://myhost:8000/api/v1/edges", body=json.dumps(dict(json={'node_id1':"VLTTKeV-ixhcGgq53", 'node_id2':"VLTTKeV-ixhcGgq51", 'type': 1 })))
问题在于在 POST
请求中以 json
作为键传递原始 json 数据。
您不需要 json
关键字参数;您正在将您的字典包装到另一本字典中。
您还需要添加一个 Content-Type
header,将其设置为 application/json
:
http = urllib3.PoolManager()
data = {'node_id1': "VLTTKeV-ixhcGgq53", 'node_id2': "VLTTKeV-ixhcGgq51", 'type': 1})
r = http.request(
"POST", "http://myhost:8000/api/v1/edges",
body=json.dumps(data),
headers={'Content-Type': 'application/json'})
我想使用 urllib3
库对 requests
库发出 POST 请求,因为它有连接池和重试等功能。但我做不到
找到以下 POST
请求的任何替代品。
import requests
result = requests.post("http://myhost:8000/api/v1/edges", json={'node_id1':"VLTTKeV-ixhcGgq53", 'node_id2':"VLTTKeV-ixhcGgq51", 'type': 1 })
这在 requests
库中运行良好,但我无法将其转换为 urllib3
请求。
我试过了
import json
import urllib3
urllib3.PoolManager().request("POST","http://myhost:8000/api/v1/edges", body=json.dumps(dict(json={'node_id1':"VLTTKeV-ixhcGgq53", 'node_id2':"VLTTKeV-ixhcGgq51", 'type': 1 })))
问题在于在 POST
请求中以 json
作为键传递原始 json 数据。
您不需要 json
关键字参数;您正在将您的字典包装到另一本字典中。
您还需要添加一个 Content-Type
header,将其设置为 application/json
:
http = urllib3.PoolManager()
data = {'node_id1': "VLTTKeV-ixhcGgq53", 'node_id2': "VLTTKeV-ixhcGgq51", 'type': 1})
r = http.request(
"POST", "http://myhost:8000/api/v1/edges",
body=json.dumps(data),
headers={'Content-Type': 'application/json'})