Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Geolocation of IP AddressTo get information about an IP address, there are various public web services that can be queried. I would also guess that paid-for services exist. In any case, it's likely the service is accessible via a REST API. This example demonstrates a few public geolocation API's, each of which may have limitations on the number of queries per hour/day/etc. Also, please note that this example was created on 23-Sep-2016. As time goes by, the public services referenced by this example may have changed or disappeared entirely. Make sure to do your research before assuming this example will work. The intent of this example is to give a flavor of what might be possible.
#include <CkRest.h> #include <CkJsonObject.h> void ChilkatSample(void) { CkString strOut; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // The IP address used in this example is 104.40.211.35 const char *ipAddress = "104.40.211.35"; // First we'll try the service at freegeoip.net. // They have a limit of 10,000 queries per hour, and also // provide free source code to run your own server. CkRest rest; // Connect to freegeoip.net bool bTls = false; int port = 80; bool bAutoReconnect = true; bool success = rest.Connect("freegeoip.net",port,bTls,bAutoReconnect); if (success == false) { strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Query the IP address to return JSON. const char *responseJson = rest.fullRequestNoBody("GET","/json/104.40.211.35"); if (rest.get_LastMethodSuccess() != true) { strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Just in case we are still connected.. int maxWaitMs = 10; rest.Disconnect(maxWaitMs); CkJsonObject json; json.Load(responseJson); json.put_EmitCompact(false); strOut.append(json.emit()); strOut.append("\r\n"); // The JSON we get back looks like this: // { // "ip": "104.40.211.35", // "country_code": "US", // "country_name": "United States", // "region_code": "WA", // "region_name": "Washington", // "city": "Redmond", // "zip_code": "98052", // "time_zone": "America/Los_Angeles", // "latitude": 47.6801, // "longitude": -122.1206, // "metro_code": 819 // } // Examine a few bits of information: strOut.append("country name = "); strOut.append(json.stringOf("country_name")); strOut.append("\r\n"); strOut.append("country code = "); strOut.append(json.stringOf("country_code")); strOut.append("\r\n"); // ----------------------------------------------------- // Now to use ip-api.com, which is mostly the same.. success = rest.Connect("ip-api.com",port,bTls,bAutoReconnect); if (success == false) { strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Query the IP address to return JSON. responseJson = rest.fullRequestNoBody("GET","/json/104.40.211.35"); if (rest.get_LastMethodSuccess() != true) { strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Just in case we are still connected.. rest.Disconnect(maxWaitMs); json.Load(responseJson); json.put_EmitCompact(false); strOut.append(json.emit()); strOut.append("\r\n"); // The JSON we get back looks like this: // This is very strange, because the two services don't agree. // { // "as": "AS8075 Microsoft Corporation", // "city": "Amsterdam", // "country": "Netherlands", // "countryCode": "NL", // "isp": "Microsoft Corporation", // "lat": 52.35, // "lon": 4.9167, // "org": "Microsoft Azure", // "query": "104.40.211.35", // "region": "NH", // "regionName": "North Holland", // "status": "success", // "timezone": "Europe/Amsterdam", // "zip": "1091" // } // Examine a few bits of information: strOut.append("country name = "); strOut.append(json.stringOf("country")); strOut.append("\r\n"); strOut.append("country code = "); strOut.append(json.stringOf("countryCode")); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.