名称 | 必填 | 类型 | 描述 | 示例 |
---|---|---|---|---|
token | true | string | 请求token,用户中心获取。 | 用户中心获取token |
date | false | string | 阳历的时间,格式为:yyyy-MM-dd-HH ,2020-03-23-12 [年份-月份-日-小时] | 2021-04-29-23 |
unix_time | int | 10位时间戳的格式 | 1619710205 |
不填参数默认获取当前时间
名称 | 描述 |
---|---|
lunar_year | 农历年 |
lunar_month | 农历月 |
lunar_day | 农历日 |
lunar_hour | 农历小时 |
lunar_year_chinese | (中文)农历年 |
lunar_month_chinese | (中文)农历月 |
lunar_day_chinese | (中文)农历天 |
lunar_hour_chinese | (中文)农历小时 |
ganzhi_year | (干支)年柱 |
ganzhi_month | (干支)月柱 |
ganzhi_day | (干支)日柱 |
ganzhi_hour | (干支)时柱 |
wuxing_year | 五行年 |
wuxing_month | 五行月 |
wuxing_day | 五行日 |
wuxing_hour | 五行水 |
color_year | 颜色年 |
color_month | 颜色月 |
color_day | 颜色日 |
color_hour | 颜色时 |
animal | 生肖 |
term | 节气 |
is_leap | 是否闰年 |
gregorian_year | 公历年 |
gregorian_month | 公历月 |
gregorian_day | 公历日 |
gregorian_hour | 公历小时 |
week_no | (数组)星期 |
week_name | (中文)星期 |
is_today | 是否今天 |
constellation | 星座 |
is_same_year | 阳历和阴历是否同一年 |
yi | 今日宜忌 |
ji | 今日宜忌 |
jishen | 吉神宜忌 |
xiongshen | 凶神宜忌 |
pengzugan | 彭祖天干百忌 |
pengzuzhi | 彭祖地支百忌 |
caishen | 财神方位 |
caishen_desc | 财神方位描述 |
xishen | 喜神方位 |
xishen_desc | 喜神方位描述 |
fushen | 福神方位 |
fushen_desc | 福神方位描述 |
taishen | 胎神 |
curl -X POST \
https://v2.alapi.cn/api/lunar \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d 'token=用户中心获取token&date=2021-04-29-23&unix_time=1619710205'
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://v2.alapi.cn/api/lunar",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "token=用户中心获取token&date=2021-04-29-23&unix_time=1619710205",
CURLOPT_HTTPHEADER => array(
"Content-Type: application/x-www-form-urlencoded",
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/x-www-form-urlencoded");
RequestBody body = RequestBody.create(mediaType, "token=用户中心获取token&date=2021-04-29-23&unix_time=1619710205");
Request request = new Request.Builder()
.url("https://v2.alapi.cn/api/lunar")
.post(body)
.addHeader("Content-Type", "application/x-www-form-urlencoded")
.build();
Response response = client.newCall(request).execute();
import requests
url = "https://v2.alapi.cn/api/lunar"
payload = "token=用户中心获取token&date=2021-04-29-23&unix_time=1619710205"
headers = {'Content-Type': "application/x-www-form-urlencoded"}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/x-www-form-urlencoded");
RequestBody body = RequestBody.create(mediaType, "token=用户中心获取token&date=2021-04-29-23&unix_time=1619710205");
Request request = new Request.Builder()
.url("https://v2.alapi.cn/api/lunar")
.post(body)
.addHeader("Content-Type", "application/x-www-form-urlencoded")
.build();
Response response = client.newCall(request).execute();
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://v2.alapi.cn/api/lunar"
payload := strings.NewReader("token=用户中心获取token&date=2021-04-29-23&unix_time=1619710205")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
返回状态码 code
描述参照
错误码 | 说明 |
---|---|
200 | 返回200表示接口正常 |
404 | 接口地址不存在 |
422 | 接口请求失败 |
400 | 接口请求失败 |
405 | 请求方法不被允许 |
100 | token 错误 |
101 | 账号过期 |
102 | 接口请求次数超过限制 |
104 | 来源或者ip不在白名单 |
406 | 没有更多数据了 |
429 | 请求 QPS 超过限制 |
内容 | 详情 |
---|---|
客服QQ | 1830934534 |
交流群 |