11/08/2024 16:35:55
免流量
一、免流服务查询
1.1 接口名
/v2/freeflow/isfree
1.2 请求参数
参数 | 类型 | 说明 |
---|---|---|
openid | string | 【必填】 MSDK 的 openid,即 GOpenID |
token | string | 【必填】 MSDK 的 token (国内的手Q或微信 MSDK token = 手Q或微信的 token) |
1.3 返回参数
返回的 json 中包含一个 key 为 freeflow_info
的对象。
freeflow_info
参数说明
参数 | 说明 |
---|---|
is_free | 1:免流,0:不免 |
cc_type | 1: 中国联通,2: 中国电信,3:中国移动,99:其它 |
ip_all | 全部免流IP列表 |
ip_cn_unicom | 中国联通的免流IP列表 |
ip_cn_telecom | 中国电信的免流IP列表 |
ip_cn_mobile | 中国移动的免流IP列表 |
ip_other | 其它运营商的免流IP列表 |
IP 列表格式说明
ip1[:port_start[-port_end]];ip2[:port_start[-port_end]]....
- 这里的ip也可能是域名
- 如果同一个ip有多个端口,且这些端口是连续的一段,则表示为
ip:最小端口-最大端口
- 如果同一个ip有多个端口,但是端口不连续,则多个端口用逗号分隔,
ip:port1,port2...
- 如果同一个ip有多个端口段,则多个端口段也用逗号分隔,
ip:最小端口1-最大端口1,最小端口2-最大端口2,...
demo 如下:
102.2.2.2:80,180,1000-2000,12345-22345;telecom.mianliu.itop.qq.com;123.1.1.2
完整的响应demo
{ "ret": 0, "msg": "success", "freeflow_info": { "ip_all": "11.22.33.44;mianliu.itop.qq.com;101.202.11.22:1000-2000,10001-20000", "ip_cn_unicom": "", "ip_cn_telecom": "102.2.2.2:12345-22345;telecom.mianliu.itop.qq.com;123.1.1.2", "ip_cn_mobile": "", "ip_other": "", "is_free": 1, "cc_type": 1 } }
Copyright © 2024 MSDK.
All rights reserved.
All rights reserved.