How to determine if an IP address belongs to a country

前端 未结 11 1178
情歌与酒
情歌与酒 2020-12-07 17:55

How would i determine the country that a spcific IP address is originating from using c#. I need to use this to check if connections originate from a specific country.

11条回答
  •  不知归路
    2020-12-07 18:29

    You can use this SQL data in your project to determine that: IP address geolocation SQL database. Download that data and import it into your database to run checks locally.

    Or you can use their free API that returns XML containing the country code and country name. You'd make a request to the following URL with the IP address you wanted to check, as seen in this example:

    http://ipinfodb.com/ip_query_country.php?ip=74.125.45.100

    Returns:

    
    74.125.45.100
    OK
    US
    United States
    
    

提交回复
热议问题