我需要从网站获取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)
我该怎么办?谢谢!