如何在 ASP.NET CORE 3.1 中获取客户端 IP 地址?

Posted

技术标签:

【中文标题】如何在 ASP.NET CORE 3.1 中获取客户端 IP 地址?【英文标题】:How do I get client IP address in ASP.NET CORE 3.1? 【发布时间】:2020-04-29 21:06:39 【问题描述】:

在 Web API 项目中编写代码时如何在 ASP.NET 3.1 中获取客户端 IP 地址

【问题讨论】:

这能回答你的问题吗? Asp Net Web API 2.1 get client IP address 这能回答你的问题吗? How do I get client IP address in ASP.NET CORE? 【参考方案1】:

使用本教程。希望它会帮助你。 Get client IP address in Asp.NET core 3

或者只是在你的控制器中使用这行代码:

var ip =HttpContext.Connection.RemoteIpAddress.ToString()

【讨论】:

链接失效了!【参考方案2】:
string ipAddress = HttpContext.Connection.RemoteIpAddress.ToString(); 

deviceName = Dns.GetHostEntry(HttpContext.Connection.RemoteIpAddress).HostName;

【讨论】:

以上是关于如何在 ASP.NET CORE 3.1 中获取客户端 IP 地址?的主要内容,如果未能解决你的问题,请参考以下文章

ASP.NET Core 3.1 - 如何获取客户端的 IP 地址?

在 cookie 中存储 JWT 令牌后,如何在 ASP.NET Core 3.1 中破坏该 cookie 并获取信息

如何在 ASP.NET Core 3.1 中启用多重身份验证?

如何使用 C# 在 ASP.NET Core 3.1 MVC 中使用会话变量

如何在 ASP.NET Core 3.1 中使用 Java?

在 Azure 的 ASP.NET Core 3.1 应用程序中获取 swagger-ui 返回 404