# 疫情动态曲线图查看 **Repository Path**: NaisWang/yiqing ## Basic Information - **Project Name**: 疫情动态曲线图查看 - **Description**: 疫情动态曲线图查看 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 1 - **Created**: 2020-03-13 - **Last Updated**: 2021-12-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 效果图: # 涉及到的api: ## URL ``` https://api.inews.qq.com/newsqa/v1/query/pubished/daily/list ``` ## 请求方式 ``` GET ``` ## 参数 | 参数名 | 类型| 说明| | -- | -- | -- | |country| string | 国家的名称| |province| string | 中国的省会名称| ## 请求示例 ``` https://api.inews.qq.com/newsqa/v1/query/pubished/daily/list?country=日本本土 https://api.inews.qq.com/newsqa/v1/query/pubished/daily/list?province=湖北 ``` ## json返回示例 ```json { "ret":0, "info":"", "data":[ { "date":"01.28", "country":"日本本土", "city":"", "confirm_add":"", "confirm":7, "heal":1, "dead":0, "city_map_name":"", "suspect":0, "confirm_add_cuts":"" }, { "date":"01.29", "country":"日本本土", "city":"", "confirm_add":"", "confirm":8, "heal":1, "dead":0, "city_map_name":"", "suspect":0, "confirm_add_cuts":"" }, ... ] } ``` ```json { "ret":0, "info":"", "data":[ { "date":"01.20", "country":"中国", "province":"湖北", "confirm":270, "dead":6, "heal":25, "confirm_add":"72", "confirm_cuts":"", "dead_cuts":"", "now_confirm_cuts":"", "heal_cuts":"", "newConfirm":0, "newHeal":0, "newDead":0, "description":"" }, { "date":"01.21", "country":"中国", "province":"湖北", "confirm":375, "dead":9, "heal":28, "confirm_add":"105", "confirm_cuts":"", "dead_cuts":"", "now_confirm_cuts":"", "heal_cuts":"", "newConfirm":105, "newHeal":3, "newDead":3, "description":"" }, ... ] } ```