码迷,mamicode.com
首页 > 其他好文 > 详细

ip查询接口

时间:2014-10-20 13:22:32      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   os   ar   java   sp   on   cti   


ip查询接口            

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Net.Security;

using System.Security.Cryptography.X509Certificates;

using System.Net;

using System.IO;

using System.IO.Compression;

using System.Text.RegularExpressions;

using System.Web.Script.Serialization;

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

     }

 }

 

ip查询接口

标签:style   http   io   os   ar   java   sp   on   cti   

原文地址:http://www.cnblogs.com/nihanhang/p/4036882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!