Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@

[https://api.live.bilibili.com/xlive/web-room/v1/index/getIpInfo](#address-2.23)

[https://i.news.qq.com/api/ip2city](#address-2.24)

[https://ipv4.gdt.qq.com/get_client_ip](#address-2.25)

3.只可通过IP查询信息

[http://opendata.baidu.com/api.php?co=&resource_id=6006&oe=utf8&query=](#address-3.1)
Expand Down Expand Up @@ -1788,6 +1792,67 @@ https://api.live.bilibili.com/xlive/web-room/v1/index/getIpInfo

 

**地址24**: https://i.news.qq.com/api/ip2city <a name="address-2.24"></a>

请求类型:GET

请求参数:无

CORS跨域支持:否

请求示例:

```
https://i.news.qq.com/api/ip2city
```

示例结果:

```
{
"ret": 0,
"errMsg": "",
"ip": "223.199.183.154",
"provcode": "21",
"citycode": "233",
"country": "中国",
"province": "海南省",
"city": "海口市",
"district": "",
"isp": "",
"districtCode": "460100",
"callback": ""
}

```


&emsp;

**地址25**: https://ipv4.gdt.qq.com/get_client_ip <a name="address-2.25"></a>

请求类型:GET

请求参数:无

CORS跨域支持:否

返回类型: `text/plain`

请求示例:

```
https://ipv4.gdt.qq.com/get_client_ip
```

示例结果:

```
223.199.183.154
```

&emsp;

<a name="address-3.1"></a>

### 3.只可通过IP查询
Expand Down