一、关于淘宝ip地址库
我们目前提供的服务包括:
1. 根据用户提供的ip地址,快速查询出该ip地址所在的地理信息和地理相关的信息,包括房地产策划方案国家、省、市和运营商。
2. 用户可以根据自己所在的位置和使用的ip地址更新我们的服务内容。
我们的优势:
1. 提供国家、省、市、县、运营商全方位信息,信息维度广,格式规范。
2. 提供完善的统计分析报表,省准确度超过99.8%,市准确度超过96.8%,数据质量有保障。
二、接口说明
1. 请求接口(get):
http://ip.taobao.com/rvice/getipinfo.php?ip=[ip地址字串]
2. 响应信息:
(json格式的)国家 、省(自治区或直辖市)、市(县)、运营商
3. 返回数据格式:
复制代码 代码如下: {“code”:0,”data”:{“ip”:”210.75.225.254″出游日记;,”country”:”\u4e2d\u56fd”,”area”:”\u534e\u5317″,
“region”:”\u5317\u4eac\u5e02″,”city”:”\u5317\u4eac\u5e02″,”county”:霸气高冷的短句221;”,”isp”:”\u7535\u4fe1″,
“country_id”:”86″,”area_id”:”100000″,”region_id”:”110000″,”city_id”:”110000″,
“county_id”:”-1″,”isp_id”:”100017″}}
其中code的值的含义为,0:成功,1:失败。
注意:为了保障服务正常运行,每个用户的访问频率需小于10qps。
三、ip库包含数据
1. ip数量统计
2. ip准确度、覆盖度统计
四、ip库能干些什么事情?
1.提醒用户不在常用地登录
2.全球报表
3.全国性报表
4.按提供商来做全国报表
5.按地区来统计提供商
6.其它
五、php调用实例
复制代码 代码如下:
<?php
/**
* 获取用户真实 ip
*/
function getip(){
static $realip;
if (ist($_rver)){
if (ist($_rver[“http_x_forwarded_for”])){
$realip = $_rver[“http_x_forwarded_for”];
} el if (ist($_rver[“http_client_ip”])) {
$realip = $_rver[“http_client_ip”];
} el {
$realip = $_rver[“remote_addr”];
}
}el {
if (getenv(“http_x_forwarded_for”)){
$realip = getenv(“http_x_forwarded_for”);
} el if (getenv(“http_client_ip”)) {
$realip = getenv(“http_client_ip”);
} el {
$realip = getenv(“remote_addr”);
}
}
return $realip;
}
/**
* 获取 ip 地理位置
* 淘宝ip接口
* @return: array
*/
function getcity($ip)
{
$url=”http://ip.taobao.com/rvice/getipinfo.php?ip=”.$ip;
$ip=json_decode(file_get_contents($url));
if((string)$ip->code==’1′){
井底之蛙是什么生肖return fal;
}
$data = (array)$ip->data;
return $data;
}
print_r(getcity(‘123.22.34.213’));
?>
六:c#调用实例
复制代码 代码如下:
taobaoip result1 = taobaoiphelper.getip(“8.8.8.8”);
if (result1.code == 0)
{
console.writeline(string.format(“调用成功。该ip的国家为{0},省份为{1},城市为{2},运营商为{3}”
, result1.data.country, result1.data.region, result1.data.city, result1.data.isp)
);
}
el
{
console.writeline(“失败,原因为:”+result1.errormsg);
}
taobaoip[] result2 = taobaoiphelper.getdomain(“lixin.me”);
foreach (taobaoip item in result2)
{
if (item.code == 0)
{
console.writeline(string.format(“调用成功。该ip的国家为{0},省份为{1},城市为{2},运营商为{3}”
, 好人好梦歌词item.data.country, item.data.region, item.data.city, item.data.isp)
);
}
el
{
console.writeline(“失败,原因为:” + item.errormsg);
}
}
本文发布于:2023-04-06 23:04:17,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/215597ab27ca0d785536b15804ce2c39.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:免费的ip数据库淘宝IP地址库简介和PHP调用实例.doc
本文 PDF 下载地址:免费的ip数据库淘宝IP地址库简介和PHP调用实例.pdf
留言与评论(共有 0 条评论) |