专业网站建设品牌,十四年专业建站经验,服务6000+客户--广州京杭网络
免费热线:400-683-0016      微信咨询  |  联系我们

在.NET Core中如何通过用户IP地址获取国家/地区?

当前位置:网站建设 > 技术支持
资料来源:网络整理       时间:2023/2/14 1:14:57       共计:3750 浏览

我想通过他的IP获取登录用户的国家。第一个功能获取IP地址。


        public static string GetLocalIPAddress()
        {
            var host = Dns.GetHostEntry(Dns.GetHostName());
            foreach (var ip in host.AddressList)
            {
                if (ip.AddressFamily == AddressFamily.InterNetwork)
                {
                    return ip.ToString();
                }
            }
            throw new Exception("No network adapters with an IPv4 address in the system!");
        }



第二个功能使用ip并返回国家


public class IpDTO {
            public string ip { get; set; }
            public string city { get; set; }
            public string region { get; set; }
            public string country { get; set; }
            public string loc { get; set; }
            public string org { get; set; }
            public string timezone { get; set; }
            public string readme { get; set; }

        }


        public static string GetUserCountryByIp(string ip)
        {
            try
            {
                IpDTO ipInfo = new IpDTO();
                string info = new WebClient().DownloadString("http://ipinfo.io/" + ip);
                ipInfo = JsonConvert.DeserializeObject<IpDTO>(info);
                Console.WriteLine(info);
                if (ipInfo != null) {
                    Console.WriteLine("城市:"+ipInfo.city);
                    Console.WriteLine("国家:" + ipInfo.country);
                }
            }
            catch (Exception)
            {


            }
            return "";
        }



版权说明:
本网站凡注明“广州京杭 原创”的皆为本站原创文章,如需转载请注明出处!
本网转载皆注明出处,遵循行业规范,如发现作品内容版权或其它问题的,请与我们联系处理!
欢迎扫描右侧微信二维码与我们联系。
·上一条:C#通过第三方API接口查询IP来源 | ·下一条:C#获取IP及判断IP是否在区间方法

Copyright © 广州京杭网络科技有限公司 2005-2025 版权所有    粤ICP备16019765号 

广州京杭网络科技有限公司 版权所有