我正在学习Python,并尝试在我的类项目中使用它。我正在寻找一种卷曲API并返回响应json的方法。例如,卷曲API后的响应是JSON,如何将其也作为JSON 返回
response = requests.get("https://github.com/timeline.json")
response = response.content
return response不会以json形式返回,而带有jsonify(repense(的return则会得到此错误(字节类型的对象不可json序列化(。
对不起我的英语。
response = requests.get("https://github.com/timeline.json")
response_json = response.json()
print(response_json["message"])
print(response_json["documentation_url"])
方法json()
将响应的json编码内容作为dict返回。此外,您可能希望在https://api.github.com/events(文档(。