尝试使用 urllib3 发布 JSON 编码的数据。
只希望我的 POST 有效负载是原始 JSON 字符串,内容类型为 application/json。
我只是看不出如何做到这一点。

urllib3 文档描述了在“字段”中发布数据,即具有(键,值)对的字典,例如 HTML 表单如何使用 URL 进行 URL 编码。但我不想那样做。

我能得到的最接近的是这个(我只是猜想把数据放在哪里,因为它没有在我能找到的任何地方记录):

http = urllib3.PoolManager()
headers = urllib3.util.make_headers(basic_auth=key+":")
r = http.request_encode_body('POST', path, json.dumps(payload), headers=headers)

这会导致此 urllib3 错误:
File "C:\Python27\lib\site-packages\urllib3-1.7.1-py2.7.egg\urllib3\filepost.py", line 44, in iter_field_objects
yield RequestField.from_tuples(*field)
TypeError: from_tuples() takes exactly 3 arguments (2 given)

感谢您的任何指点!

最佳答案

你不能为此使用 PoolManager.request ,它试图自己编造 body ,使用较低级别的 urlopen :

In [16]: pool = urllib3.PoolManager()

In [17]: print pool.urlopen('POST', 'http://httpbin.org/post', headers={'Content-Type':'application/json'}, body='{"sup":"son"}').data
{
  "data": "{\"sup\":\"son\"}",
  "form": {},
  "json": {
    "sup": "son"
  },
  "origin": "50.74.23.243",
  "args": {},
  "url": "http://httpbin.org/post",
  "files": {},
  "headers": {
    "Host": "httpbin.org",
    "Content-Length": "13",
    "Content-Type": "application/json",
    "Accept-Encoding": "identity",
    "Connection": "close"
  }
}

关于python - 如何将原始 POST 数据传递到 urllib3?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19233001/

10-10 21:07