尝试从此网站获取JSON时出错

时间:2019-09-24 21:30:46

标签: python json url

我需要从网站获取json文件,但是我不确定该怎么做。这是我到目前为止的内容:

import requests
import json

url = "https://doi.org/10.5281/zenodo.1212660"
r = requests.get(url)
print(r.json())

但是我收到此错误:json.decoder.JSONDecodeError: Expecting value: line 2 column 1 (char 1)

我该怎么办?谢谢!

0 个答案:

没有答案