IP查询接口

来源:互联网 发布:数据仓库软件 编辑:程序博客网 时间:2024/05/20 06:04

IP查询接口
Using System.Text;            

using System;

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();

       }

    }

}

 

 

接口信息

URLhttp://apis.haoservice.com/lifeservice/queryIpAddr

支持格式:json

http请求方式:GET

DEMOhttp://apis.haoservice.com/lifeservice/queryIpAddr?ip=115.183.152.152&key=您申请的APPKEY

返回结果:

  {  

  "error_code":0, 

  "reason":"Success",

  "result":

     {   

     "area":"北京市", 

      "location":"电信通"   

     }

 }

 

 

0 0
原创粉丝点击