4

我现在拥有的(Python 3.4):

r = yield from aiohttp.request('post', URL, params=None, data=values, headers=headers)

文档中有什么:

conn = aiohttp.ProxyConnector(proxy="http://some.proxy.com")
r = await aiohttp.get('http://python.org', connector=conn)

那么,我应该如何通过与 aiohttp 的代理连接发送带有标头的 post 请求?

谢谢。

4

2 回答 2

4
connector = aiohttp.ProxyConnector(proxy="http://some.proxy.com")
session = aiohttp.ClientSession(connector=connector)
async with session.post("http://example.com/post", data=b"binary data") as resp:
    print(resp.status)

session.close()
于 2016-02-01T15:21:03.500 回答
2

你可以使用这个:

import aiohttp

conn = aiohttp.ProxyConnector(proxy="http://some.proxy.com")

r = await aiohttp.post('http://python.org', connector=conn, data=b"hello", headers={})

或者

import aiohttp

from aiohttp import request

conn = aiohttp.ProxyConnector(proxy="http://some.proxy.com")

r = await request('post','http://python.org', connector=conn, data=b"hello", headers={})
于 2016-02-02T06:51:58.667 回答