我在Python 2.7中使用urllib并使用了以下代码。我正在尝试使用请求库执行相同的请求,但无法使其正常工作。
import urllib
import urllib2
import json
req = urllib2.Request(url='https://testone.limequery.com/index.php/admin/remotecontrol',\
data='{\"method\":\"get_session_key\",\"params\":[\"username\",\"password\"],\"id\":1}')
req.add_header('content-type', 'application/json')
req.add_header('connection', 'Keep-Alive')
f = urllib2.urlopen(req)
myretun = f.read()
j=json.loads(myretun)
print(j['result'])
使用请求库(不起作用)
import requests
import json
d= {"method":"get_session_key","params":["username","password"],"id":"1"}
headers = {'content-type' :'application/json','connection': 'Keep-Alive'}
req2 = requests.get(url='https://testone.limequery.com/index.php/admin/remotecontrol',data=d,headers=headers)
json_data = json.loads(req2.text)
print(json data['result'])
我遇到错误JSONDecodeError: Expecting value: line 1 column 1 (char 0)
,如何使代码与请求库一起使用?
答案 0 :(得分:2)
首先,您发送的请求类型错误。您正在发送GET请求,但需要使用requests.post
发送POST。
第二,将字典传递为data
将对数据进行表单编码,而不是对JSON编码。如果要在请求正文中使用JSON,请使用json
参数,而不要使用data
:
requests.post(url=..., json=d)
答案 1 :(得分:0)
参考链接:http://docs.python-requests.org/en/master/api/
您可以像这样使用python的请求模块
import requests
Req = requests.request(
method = "GET", # or "POST", "PUT", "DELETE", "PATCH" etcetera
url = "http(s)://*",
params = {"key": "value"}, # IF GET Request (Optional)
data = {"key": "value"}, # IF POST Request (Optional)
headers = {"header_name": "header_value"} # (Optional)
)
print Req.content
您可以使用try :: catch块围绕代码,如下所示,以捕获请求模块抛出的任何异常
try:
# requests.request(** Arguments)
except requests.exceptions.RequestException as e:
print e
有关完整的参数列表,请检查参考链接。