概述
ip查询接口
using System;
using System.Text;
using System.Net;
namespace IP
{
class Program
{
static void Main(string[] args)
{
string key = "************************";
string ip = "168.183.151.112";
string url = "http://apis.haoservice.com/lifeservice/queryIpAddr?ip=" + ip + "&key=" + key;
WebClient wc = new WebClient();
wc.Encoding = Encoding.UTF8;
string str = wc.DownloadString(url);
Console.WriteLine(str);
Console.ReadKey();
}
}
}
接口信息
URL:http://apis.haoservice.com/lifeservice/queryIpAddr
支持格式:json
http请求方式:GET
DEMO:http://apis.haoservice.com/lifeservice/queryIpAddr?ip=115.183.152.152&key=您申请的APPKEY
返回结果:
{
"error_code":0,
"reason":"Success",
"result":
{
"area":"北京市",
"location":"电信通"
}
}
转载于:https://www.cnblogs.com/rewuyu/p/4036903.html
最后
以上就是超级身影为你收集整理的ip查询接口的全部内容,希望文章能够帮你解决ip查询接口所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复