使用 http.client 登录网站

Login to website using http.client

我正在尝试使用以下代码在 Python 中使用 http.client 登录网站:

import urllib.parse
import http.client
payload = urllib.parse.urlencode({"username": "USERNAME-HERE",
                                 "password": "PASSWORD-HERE",
                                 "redirect": "index.php",
                                 "sid": "",
                                 "login": "Login"})
conn = http.client.HTTPConnection("osu.ppy.sh:80")
conn.request("POST", "/forum/ucp.php?mode=login", payload)
response = conn.getresponse()
data = response.read()

# print the HTML after the request
print(bytes(str(data), "utf-8").decode("unicode_escape"))

我知道一个常见的建议是只使用 Requests 库,我已经试过了,但我特别想知道如何在不使用 Requests 的情况下做到这一点。

我正在寻找的行为可以通过以下使用 Requests 成功登录站点的代码复制:

import requests
payload = {"username": "USERNAME-HERE",
           "password": "PASSWORD-HERE",
           "redirect": "index.php",
           "sid": "",
           "login": "Login"}
p = requests.Session().post('https://osu.ppy.sh/forum/ucp.php?mode=login', payload)

# print the HTML after the request
print(p.text)

在我看来,http.client 代码不是 "delivering" 有效载荷,而请求代码是。

有什么见解吗?我是不是忽略了什么?


编辑: 添加 conn.set_debuglevel(1) 给出以下输出:

send: b'POST /forum/ucp.php?mode=login HTTP/1.1
Host: osu.ppy.sh
Accept-Encoding: identity
Content-Length: 70'


send: b'redirect=index.php&sid=&login=Login&username=USERNAME-HERE&password=PASSWORD-HERE'
reply: 'HTTP/1.1 200 OK'


header: Date
header: Content-Type
header: Transfer-Encoding
header: Connection
header: Set-Cookie
header: Cache-Control
header: Expires
header: Pragma
header: X-Frame-Options
header: X-Content-Type-Options
header: Server
header: CF-RAY

由于您正在对有效负载进行 urlencoding,因此您必须发送 header:application/x-www-form-urlencoded