名称 | 必填 | 类型 | 描述 | 示例 |
---|---|---|---|---|
token | true | string | 请求token,用户中心获取。 | 用户中心获取token |
from | true | string | 出发地城市ID | |
to | true | string | 目的地城市ID |
城市id 获取接口 防疫政策城市查询-ALAPI
名称 | 描述 |
---|---|
from_info | 出发城市信息 |
province_id | 省份ID |
city_id | 城市id |
province_name | 省份名称 |
city_name | 城市名称 |
health_code_desc | 健康码描述 |
health_code_gid | 健康码使用教程链接 |
health_code_name | 健康码名称 |
health_code_picture | 健康码图片地址 |
health_code_style | 健康码类型,0:小程序 1:二维码,其他:未知 |
high_in_desc | 高风险地区,进入政策描述 |
low_in_desc | 低风险地区,进入政策描述 |
out_desc | 出行政策描述 |
risk_level | 风险等级,0:暂无 1:低风险 2:中风险 3:高风险 4:部分地区中风险 5:部分地区高风险 6:部分地区中、高风险 |
curl -X POST \
https://v2.alapi.cn/api/springTravel/query \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d 'token=用户中心获取token&from=undefined&to='
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://v2.alapi.cn/api/springTravel/query",
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&from=undefined&to=",
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&from=undefined&to=");
Request request = new Request.Builder()
.url("https://v2.alapi.cn/api/springTravel/query")
.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/springTravel/query"
payload = "token=用户中心获取token&from=undefined&to="
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&from=undefined&to=");
Request request = new Request.Builder()
.url("https://v2.alapi.cn/api/springTravel/query")
.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/springTravel/query"
payload := strings.NewReader("token=用户中心获取token&from=undefined&to=")
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 |
交流群 |