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
(Lianja) Google Maps Geolocation RequestDemonstrates how make a Google Maps Geolocation REST API request.
// This example duplicates the following CURL request: // curl -d @your_filename.json -H "Content-Type: application/json" -i "https://www.googleapis.com/geolocation/v1/geolocate?key=YOUR_API_KEY" // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loRest = createobject("CkRest") // Connect to the Google API REST server. llBTls = .T. lnPort = 443 llBAutoReconnect = .T. llSuccess = loRest.Connect("www.googleapis.com",lnPort,llBTls,llBAutoReconnect) // Add the Content-Type request header. loRest.AddHeader("Content-Type","application/json") // Add your API key as a query parameter loRest.AddQueryParam("key","YOUR_API_KEY") // The JSON query is contained in the body of the HTTP POST. // This is a sample query (which we'll dynamically build in this example) // { // "homeMobileCountryCode": 310, // "homeMobileNetworkCode": 260, // "radioType": "gsm", // "carrier": "T-Mobile", // "cellTowers": [ // { // "cellId": 39627456, // "locationAreaCode": 40495, // "mobileCountryCode": 310, // "mobileNetworkCode": 260, // "age": 0, // "signalStrength": -95 // } // ], // "wifiAccessPoints": [ // { // "macAddress": "01:23:45:67:89:AB", // "signalStrength": 8, // "age": 0, // "signalToNoiseRatio": -65, // "channel": 8 // }, // { // "macAddress": "01:23:45:67:89:AC", // "signalStrength": 4, // "age": 0 // } // ] // } loJson = createobject("CkJsonObject") loJson.AppendInt("homeMobileCountryCode",310) loJson.AppendInt("homeMobileNetworkCode",260) loJson.AppendString("radioType","gsm") loJson.AppendString("carrier","T-Mobile") loACellTowers = loJson.AppendArray("cellTowers") loACellTowers.AddObjectAt(0) loOCellTower = loACellTowers.ObjectAt(0) loOCellTower.AppendInt("cellId",39627456) loOCellTower.AppendInt("locationAreaCode",40495) loOCellTower.AppendInt("mobileCountryCode",310) loOCellTower.AppendInt("mobileNetworkCode",260) loOCellTower.AppendInt("age",0) loOCellTower.AppendInt("signalStrength",-95) release loOCellTower release loACellTowers loAWifi = loJson.AppendArray("wifiAccessPoints") loAWifi.AddObjectAt(0) loOPoint = loAWifi.ObjectAt(0) loOPoint.AppendString("macAddress","01:23:45:67:89:AB") loOPoint.AppendInt("signalStrength",8) loOPoint.AppendInt("age",0) loOPoint.AppendInt("signalToNoiseRatio",-65) loOPoint.AppendInt("channel",8) release loOPoint loAWifi.AddObjectAt(1) loOPoint = loAWifi.ObjectAt(1) loOPoint.AppendString("macAddress","01:23:45:67:89:AC") loOPoint.AppendInt("signalStrength",4) loOPoint.AppendInt("age",0) release loOPoint release loAWifi lcResponseJson = loRest.FullRequestString("POST","/geolocation/v1/geolocate",loJson.Emit()) if (loRest.LastMethodSuccess <> .T.) then ? loRest.LastErrorText release loRest release loJson return endif // When successful, the response code is 200. if (loRest.ResponseStatusCode <> 200) then // Examine the request/response to see what happened. ? "response status code = " + str(loRest.ResponseStatusCode) ? "response status text = " + loRest.ResponseStatusText ? "response header: " + loRest.ResponseHeader ? "response JSON: " + lcResponseJson ? "---" ? "LastRequestStartLine: " + loRest.LastRequestStartLine ? "LastRequestHeader: " + loRest.LastRequestHeader release loRest release loJson return endif loJson.EmitCompact = .F. ? "JSON request body: " + loJson.Emit() // The JSON response should look like this: // { // "location": { // "lat": 37.4248297, // "lng": -122.07346549999998 // }, // "accuracy": 1145.0 // } ? "JSON response: " + lcResponseJson loJsonResp = createobject("CkJsonObject") loJsonResp.Load(lcResponseJson) loJsonLoc = loJsonResp.ObjectOf("location") // Any JSON value can be obtained as a string.. lcLatitude = loJsonLoc.StringOf("lat") ? "latitude = " + lcLatitude lcLongitude = loJsonLoc.StringOf("lng") ? "longitude = " + lcLongitude release loJsonLoc lcAccuracy = loJsonResp.StringOf("accuracy") ? "accuracy = " + lcAccuracy release loRest release loJson release loJsonResp |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.