我想知道一种方法,我可以获取所有访问网站(我的网站)的访问者的国家/地区名称。我看过maxmind.com
,因为我是初学者而设置起来非常复杂。希望能得到一些好的答案。我已经在这个网站上尝试了很多东西,无法提出解决方案。
GeoServiceReference.GeocodeServiceClient client = new GeoServiceReference.GeocodeServiceClient();
var countries = new List<string>();
for (double lat = 0; lat < 360; lat+=0.1)
for(double lon = 0; lon < 360; lon+=0.1)
{
var result = client.ReverseGeocode(new GeoServiceReference.ReverseGeocodeRequest
{
Location = new GeoServiceReference.Location
{
Latitude = lat,
Longitude = lon
}
});
if (!countries.Contains(result.Results.First().Address.CountryRegion))
{
Console.WriteLine(result.Results.First().Address.CountryRegion);
countries.Add(result.Results.First().Address.CountryRegion);
}
}
答案 0 :(得分:2)
作为Maxmind的替代方案,freegeoip.net提供基于Maxmind遗留数据库的免费REST服务。它非常易于使用 - 您只需要以下列格式向URL发出HTTP GET请求:
http://freegeoip.net/json/{ip_or_hostname}
您可以使用RestSharp这样的库 - 再次,非常容易使用 - 发出此请求并解析结果。
这是一个简单的例子,它应该指向正确的方向:
public Geolocation GetGeolocationData(string ipAddress)
{
var client = new RestClient("http://freegeoip.net/");
var request = new RestRequest("json/{ip}");
request.AddUrlSegment("ip", ipAddress);
var response = client.Execute<Geolocation>(request);
return response.Data;
}
在这里,我假设Geolocation
是一个类,其中一些属性与REST服务返回的JSON结果中的名称相匹配,例如:
public class Geolocation
{
public string CountryName { get; set; }
...
}
答案 1 :(得分:0)
最方便的工具是API,或者如果您想在服务器上托管数据并执行查找,那么您可以考虑获取数据库的副本。 http://www.ipinfodb.com