7

我找不到aiohttp与登录页面结合使用的工作代码。目标很简单:使用用户名和密码进行基于表单的身份验证,我希望在随后的 aiohttp 异步获取调用中使用该 cookie。

似乎整个 Session 概念在版本之间的 aiohttp 中发生了变化,所以我很好奇如何在最新版本中实现它。我不确定如何获取 cookie 一次然后在异步事务中使用它。

我真的很想看到一个完整的例子,因为不幸的是我无法让它与我在各处找到的片段一起工作。

我想这可能是开始,但我不确定,我当然不知道如何将所有东西连接到它(我还需要一个aiohttp.TCPConnector吗?) http://aiohttp.readthedocs.org/en/latest/ client_reference.html#aiohttp.client.ClientSession

我在 Python 2 中使用 mechanize 的非异步版本示例(尽管我自然地将 Python 3 用于 asyncio 等):

import mechanize
import urllib

class MyClass()
    def __init__(self):
        self.data = {'username' : 'me', 'password' : 'pw'}
        self.login_url = 'http://example.com/login'
        self.login()

    def call(self, url):
        request2 = mechanize.Request(url)
        self.cookie_jar.add_cookie_header(request2)
        response2 = mechanize.urlopen(request2).read()
        return response2    

    def login(self):
        request = mechanize.Request(self.login_url)
        # 'username' and 'password' keys are actually the name of the <input>
        logInfo = urllib.urlencode({'username' : self.data['username'], 
                                    'password' : self.data['password']})
        response = mechanize.urlopen(request, data = logInfo)
        cookie_jar = mechanize.CookieJar()
        cookie_jar.extract_cookies(response, request)
        self.cookie_jar = cookie_jar

mc = MyClass()
mc.call('http://example.com/other_url')
4

1 回答 1

3

我刚刚在客户端添加了基本身份验证示例:client_auth.py

对你来说够了吗?

PS 实际上ClientSession是旧式request+connector概念的替代品。会话是保存会话相关信息的更自然的方式。但是旧方法仍然有效。

于 2015-07-30T11:59:17.760 回答