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
(PowerBuilder) ip-api.com IPv4 Geolocation LookupDemonstrates how to lookup Geolocation data for an IPv4 address using the ip-api.com API.
integer li_rc oleobject loo_Http string ls_JsonStr oleobject loo_Json integer li_Success string ls_As string ls_City string ls_Country string ls_CountryCode string ls_Isp string ls_Lat string ls_Lon string ls_Org string ls_Query string ls_Region string ls_RegionName string ls_Status string ls_Timezone string ls_Zip // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") if li_rc < 0 then destroy loo_Http MessageBox("Error","Connecting to COM object failed") return end if // Lookup an IPv4 address: 149.250.207.170 (this was a randomly chosen address) ls_JsonStr = loo_Http.QuickGetStr("http://ip-api.com/json/149.250.207.170") if loo_Http.LastMethodSuccess = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Http return end if loo_Json = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject") loo_Json.EmitCompact = 0 li_Success = loo_Json.Load(ls_JsonStr) Write-Debug loo_Json.Emit() // Sample output: // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON // { // "as": "AS15854 Hewlett Packard GmbH", // "city": "B�blingen", // "country": "Germany", // "countryCode": "DE", // "isp": "Triaton Frankfurt", // "lat": 48.6779, // "lon": 8.97297, // "org": "EntServ Deutschland GmbH", // "query": "149.250.207.170", // "region": "BW", // "regionName": "Baden-W�rttemberg", // "status": "success", // "timezone": "Europe/Berlin", // "zip": "71034" // } ls_As = loo_Json.StringOf("as") ls_City = loo_Json.StringOf("city") ls_Country = loo_Json.StringOf("country") ls_CountryCode = loo_Json.StringOf("countryCode") ls_Isp = loo_Json.StringOf("isp") ls_Lat = loo_Json.StringOf("lat") ls_Lon = loo_Json.StringOf("lon") ls_Org = loo_Json.StringOf("org") ls_Query = loo_Json.StringOf("query") ls_Region = loo_Json.StringOf("region") ls_RegionName = loo_Json.StringOf("regionName") ls_Status = loo_Json.StringOf("status") ls_Timezone = loo_Json.StringOf("timezone") ls_Zip = loo_Json.StringOf("zip") destroy loo_Http destroy loo_Json |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.