假设存在如下JSON格式数据:
使用python编写代码处理JSON请求,拿到response里的result数据:
import json
from urllib.request import urlopen
def getInformation(id):
response = urlopen("https://api.apiopen.top/musicRankingsDetails?type="+id).read().decode("utf-8")
responsejson = json.loads(response)
return responsejson.get("result")
print(getInformation("1")[0].get("artist_name"))
Swagger UI
可以点击“ try it out ”,调试API
可以看到请求的URL,参数等
例如getImages的API: