我试图向" kahoot.it /#/"发送简单的帖子请求。 ,每次我提出请求,我得到http 405 msg。 有任何想法吗? ,我也尝试使用机械化,但它似乎不支持JSON格式(br.select_form())
import re
from mechanize import Browser
import json
import requests
authparams = json.JSONEncoder().encode({'gameId': '981103'})
r = requests.post("https://kahoot.it/", data=json.dumps(authparams),headers={'content-type':'application/json'})
print r