Python简单的json帖子

时间:2015-11-26 23:08:17

标签: python json http post python-requests

我试图向" 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

0 个答案:

没有答案