|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (Node.js) 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 
 var os = require('os'); if (os.platform() == 'win32') { var chilkat = require('@chilkat/ck-node23-win64'); } else if (os.platform() == 'linux') { if (os.arch() == 'arm') { var chilkat = require('@chilkat/ck-node23-linux-arm'); } else if (os.arch() == 'arm64') { var chilkat = require('@chilkat/ck-node23-linux-arm64'); } else { var chilkat = require('@chilkat/ck-node23-linux-x64'); } } else if (os.platform() == 'darwin') { var chilkat = require('@chilkat/ck-node23-mac-universal'); } function chilkatExample() { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. var http = new chilkat.Http(); var success; // Note: This is not a real API key. Replace with your own... http.SetUrlVar("api_key","2C312FBC9E667E5A0211F5152E5A1333"); http.SetUrlVar("ip_address","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.. var jsonStr = http.QuickGetStr("https://api.ip2location.io/?key={$api_key}&ip={$ip_address}&format=json"); if (http.LastMethodSuccess == false) { console.log(http.LastErrorText); return; } var json = new chilkat.JsonObject(); json.EmitCompact = false; success = json.Load(jsonStr); console.log(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 // } var ip = json.StringOf("ip"); var country_code = json.StringOf("country_code"); var country_name = json.StringOf("country_name"); var region_name = json.StringOf("region_name"); var city_name = json.StringOf("city_name"); var latitude = json.StringOf("latitude"); var longitude = json.StringOf("longitude"); var zip_code = json.StringOf("zip_code"); var time_zone = json.StringOf("time_zone"); var asn = json.StringOf("asn"); var v_as = json.StringOf("as"); var is_proxy = json.BoolOf("is_proxy"); } chilkatExample(); | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.