我是靠谱客的博主 超级身影,这篇文章主要介绍ip查询接口,现在分享给大家,希望可以做个参考。

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

         }

    }

}

  

接口信息

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":"电信通"    

     }

 }

 

转载于:https://www.cnblogs.com/rewuyu/p/4036903.html

最后

以上就是超级身影最近收集整理的关于ip查询接口的全部内容,更多相关ip查询接口内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部