{ "code": 1, "msg": "数据返回成功!", "data": [{ "date": "2022年06月21日", "lunarDate": "2022年05月23日", "holidayName": "夏至", "residueDays": -13, "lunarHoliday": true }, { "date": "2022年06月23日", "lunarDate": "2022年05月25日", "holidayName": "国际奥林匹克日", "residueDays": -11, "lunarHoliday": false }, { "date": "2022年06月25日", "lunarDate": "2022年05月27日", "holidayName": "全国土地日", "residueDays": -9, "lunarHoliday": false }, { "date": "2022年06月26日", "lunarDate": "2022年05月28日", "holidayName": "国际禁毒日", "residueDays": -8, "lunarHoliday": false }, { "date": "2022年06月26日", "lunarDate": "2022年05月28日", "holidayName": "联合国宪章日", "residueDays": -8, "lunarHoliday": false }, { "date": "2022年07月01日", "lunarDate": "2022年06月03日", "holidayName": "香港回归纪念日", "residueDays": -3, "lunarHoliday": false }, { "date": "2022年07月01日", "lunarDate": "2022年06月03日", "holidayName": "建党节", "residueDays": -3, "lunarHoliday": false }, { "date": "2022年07月07日", "lunarDate": "2022年06月09日", "holidayName": "国际合作节", "residueDays": 2, "lunarHoliday": false }, { "date": "2022年07月07日", "lunarDate": "2022年06月09日", "holidayName": "小暑", "residueDays": 2, "lunarHoliday": true }, { "date": "2022年07月11日", "lunarDate": "2022年06月13日", "holidayName": "世界人口日", "residueDays": 6, "lunarHoliday": false }, { "date": "2022年07月23日", "lunarDate": "2022年06月25日", "holidayName": "大暑", "residueDays": 18, "lunarHoliday": true }, { "date": "2022年08月01日", "lunarDate": "2022年07月04日", "holidayName": "八一建军节", "residueDays": 27, "lunarHoliday": false }, { "date": "2022年08月04日", "lunarDate": "2022年07月07日", "holidayName": "七夕情人节", "residueDays": 30, "lunarHoliday": true }, { "date": "2022年08月07日", "lunarDate": "2022年07月10日", "holidayName": "立秋", "residueDays": 33, "lunarHoliday": true }] }
<?php /** * Created by PhpStorm. * User: FZS * Time: 2022/06/01 11:38 */ class freeApi { private $apiUrl; public function __construct() { $this->apiUrl = 'https://www.mxnzp.com/api/holiday/recent/list?app_id=your&app_secret=your'; } /** * 获取结果 * @return array */ public function getResult() { return file_get_contents($this->apiUrl); } }
package main import ( "fmt" "io/ioutil" "log" "net/http" ) const ( APIURL = "https://www.mxnzp.com/api/holiday/recent/list?app_id=your&app_secret=your" ) func main() { queryUrl := fmt.Sprintf("%s",APIURL) resp, err := http.Get(queryUrl) if err != nil { log.Println(err) return } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { fmt.Println(err) return } fmt.Println(string(body)) }