摘要:
1、Get方法时,直接用浏览器访问 2、Postman 3、用HttpClient调用 阅读全文
摘要:
public static String GetIP() { String ip = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (string.IsNullOrEmpty(ip)) { ip = HttpContext.Current.... 阅读全文