当我进行此API调用时(使用Python 3.6):
main_api = "http://xyz:944/connector/reportqueries/routing/history/2.0/jobs?"
startTime='2019-02-19 01:01:01.001'
response = requests.get(main_api+"startTime="+startTime)
response.json()
我收到以下错误:
JSONDecodeError:预期值:第1行第1列(字符0)
直接调用完整的api路径时会遇到相同的错误:
response = requests.get("http://xyz:944/connector/reportqueries/routing/history/2.0/jobs?startTime=2019-02-19 01:01:01.001")
但是,当我将此路径直接粘贴到浏览器中时,会收到大量数据。是什么原因导致这种差异?