ip查询接口 -奇异果体育app竞彩官网下载
更新时间:2020-12-31
ip检测
验证指定的ip是否属于百度开放云cdn服务节点。
单个ip查询接口
method | path | action |
---|---|---|
get | /v2/utils | 查询ip是否是百度cdn节点 |
url参数:
参数 | 类型 | 可选 | 说明 |
---|---|---|---|
action | string | 必须 | describeip |
ip | string | 必须 | 指定ip地址 |
响应体 (response body)
参数 | 类型 | 说明 |
---|---|---|
cdnip | bool | 是否属于开放云cdn节点,true属于,false不属于 |
isp | string | 运营商 |
region | string | 地区 |
ip list 查询接口
method | path | action |
---|---|---|
post | /v2/utils/ips | 查询ip列表是否是百度cdn节点 |
请求体(request body)
参数 | 类型 | 可选 | 说明 |
---|---|---|---|
action | string | 必须 | describeip |
ips | list |
必须 | 指定要查询的ip列表,不能为空,不能超过100 |
响应体 (response body)
参数 | 类型 | 说明 |
---|---|---|
ipinfo | list | 查询结果列表 |
data类型说明
参数 | 类型 | 说明 |
---|---|---|
ip | string | 查询的ip |
cdnip | bool | 是否属于开放云cdn节点,true属于,false不属于 |
isp | string | 运营商 |
region | string | 地区 |
request example
{
"action":"describeip",
"ips":[
"1.3.5.6",
"2.36.4.1",
"1.56.97.180",
"111.63.51.2"
]
}
response example
http/1.1 200 ok
content-type: application/json; charset=utf-8
date: thu, 28 may 2020 11:53:45 gmt
content-length: 267
[
{
"cdnip":false,
"ip":"1.3.5.6",
"isp":"电信",
"region":"广东"
},
{
"cdnip":false,
"ip":"2.36.4.1",
"isp":"未知",
"region":"未知"
},
{
"cdnip":true,
"ip":"1.56.97.180",
"isp":"联通",
"region":"黑龙江"
},
{
"cdnip":true,
"ip":"111.63.51.2",
"isp":"百度",
"region":"河北"
}
]
百度回源ip地址段查询接口
method | path | action |
---|---|---|
get | /v2/nodes/list | 回源ip节点 |
url参数:
无
响应体 (response body)
参数 | 类型 | 说明 |
---|---|---|
status | int | 状态 0表示正常 |
details | list | 查询结果列表 |
data类型说明
参数 | 类型 | 说明 |
---|---|---|
cnname | string | 节点描述 |
ip | string | ip段 |
level | string | 节点层级 |
province | string | 省份 |
city | string | 城市 |
isp | string | 运营商 |
request example
get /v2/nodes/list http/1.1
host: cdn.baidubce.com
response example
http/1.1 200 ok
content-type: application/json; charset=utf-8
date: thu, 28 may 2020 11:53:45 gmt
{
"status": 0,
"details": [
{
"cnname": "保定移动二级",
"ip": "111.63.51.0/24",
"level": "2",
"province": "河北",
"city": "保定",
"isp": "移动"
},
{
"cnname": "沧州联通二级",
"ip": "221.195.34.0/24",
"level": "2",
"province": "河北",
"city": "沧州",
"isp": "联通"
}
]
}