1
我試圖登錄到使用下面的代碼使用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"))
我知道,一個共同的建議是隻使用請求庫,我已經嘗試過,但我特別想知道如何在不使用請求的情況下執行此操作。
我正在尋找可以用下面的代碼,使用請求成功登錄到該網站複製行爲:
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代碼不是「提供」了有效載荷,而請求代碼是。
任何見解?我可以忽略一些東西嗎
編輯:添加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
運行與HTTPConnection.set_debuglevel(1) ...您還需要發送一個'Content-type:'application/json'標題。 –
@CoreyGoldberg我修改了這個問題,請參閱編輯。 –
我沒有注意到你正在編碼有效載荷。所以標題需要'application/x-www-form-urlencoded'' –