Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C++) ip2location.io GeoLocation APISee more Geolocation ExamplesDemonstrates how to lookup Geolocation data for an IPv4 address using the ip2location.io GeoLocation API. For more information, see https://www.ip2location.io/ip2location-documentation
#include <CkHttpW.h> #include <CkJsonObjectW.h> void ChilkatSample(void) { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkHttpW http; bool success; // Note: This is not a real API key. Replace with your own... http.SetUrlVar(L"api_key",L"2C312FBC9E667E5A0211F5152E5A1333"); http.SetUrlVar(L"ip_address",L"8.8.8.8"); // Note: When first creating an ip2location.io account, make sure to at least subscribe to the free access. // Otherwise your API key will not yet work.. const wchar_t *jsonStr = http.quickGetStr(L"https://api.ip2location.io/?key={$api_key}&ip={$ip_address}&format=json"); if (http.get_LastMethodSuccess() == false) { wprintf(L"%s\n",http.lastErrorText()); return; } CkJsonObjectW json; json.put_EmitCompact(false); success = json.Load(jsonStr); wprintf(L"%s\n",json.emit()); // Sample output: // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON // { // "ip": "8.8.8.8", // "country_code": "US", // "country_name": "United States of America", // "region_name": "California", // "city_name": "Mountain View", // "latitude": 37.405992, // "longitude": -122.078515, // "zip_code": "94043", // "time_zone": "-07:00", // "asn": "15169", // "as": "Google LLC", // "is_proxy": false // } const wchar_t *ip = json.stringOf(L"ip"); const wchar_t *country_code = json.stringOf(L"country_code"); const wchar_t *country_name = json.stringOf(L"country_name"); const wchar_t *region_name = json.stringOf(L"region_name"); const wchar_t *city_name = json.stringOf(L"city_name"); const wchar_t *latitude = json.stringOf(L"latitude"); const wchar_t *longitude = json.stringOf(L"longitude"); const wchar_t *zip_code = json.stringOf(L"zip_code"); const wchar_t *time_zone = json.stringOf(L"time_zone"); const wchar_t *asn = json.stringOf(L"asn"); const wchar_t *v_as = json.stringOf(L"as"); bool is_proxy = json.BoolOf(L"is_proxy"); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.