因此,我尝试使用Python3和Requests加入Kahoot游戏。问题是输入游戏密码后,您将被重定向,然后必须输入昵称。重定向后,有人知道如何登录吗?这是代码:
import requests
url = "https://kahoot.it/"
GAME_PIN = input("Game Pin: ")
USERNAME = input("Username to display: ")
requests.post(url, allow_redirects=True, data={
"inputSession": GAME_PIN,
"Username": USERNAME
})
答案 0 :(得分:0)
您确定正确的请求是对POST
的{{1}}请求吗?我看到的唯一kahoot.it
请求是针对Google Recaptcha的。
如果POST端点的类型为POST