获取数据中心对应国家列表
GET
/externalapi/common/countryList获取数据中心对应国家列表
请求参数
Query 参数
access_token
string
必需
用户token。用户登录之后,获取token
示例值:
{{access_token}}
type
string
必需
套餐类型:0=全球动态住宅,1=全球静态住宅,2=全球数据中心。此处固定为:2
示例值:
2
status
string
必需
计费模式:0=按流量,1=按时长,2=按ip数。此处固定为:1
示例值:
1
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
响应编码:1=正常,0=错误
msg
string
响应说明
time
string
必需
data
object
必需
countrys
array [object {6}]
国家列表
示例
{
"code": 1,
"msg": "获取成功!",
"time": "1697680792",
"data": {
"countrys": [
{
"id": 11,
"name": "美国",
"image": "",
"code": "US",
"type_text": "",
"status_text": ""
},
{
"id": 22,
"name": "香港",
"image": "",
"code": "HK",
"type_text": "",
"status_text": ""
},
{
"id": 33,
"name": "英国",
"image": "",
"code": "GB",
"type_text": "",
"status_text": ""
}
]
}
}
最后修改时间: 1 年前