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
(Swift 3,4,5...) Google Maps Geolocation RequestDemonstrates how make a Google Maps Geolocation REST API request.
func chilkatTest() { // 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. let rest = CkoRest()! // Connect to the Google API REST server. var bTls: Bool = true var port: Int = 443 var bAutoReconnect: Bool = true var success: Bool = rest.connect("www.googleapis.com", port: port, tls: bTls, autoReconnect: bAutoReconnect) // Add the Content-Type request header. rest.addHeader("Content-Type", value: "application/json") // Add your API key as a query parameter rest.addQueryParam("key", value: "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 // } // ] // } let json = CkoJsonObject()! json.appendInt("homeMobileCountryCode", value: 310) json.appendInt("homeMobileNetworkCode", value: 260) json.append("radioType", value: "gsm") json.append("carrier", value: "T-Mobile") var aCellTowers: CkoJsonArray? = json.appendArray("cellTowers") aCellTowers!.addObject(at: 0) var oCellTower: CkoJsonObject? = aCellTowers!.object(at: 0) oCellTower!.appendInt("cellId", value: 39627456) oCellTower!.appendInt("locationAreaCode", value: 40495) oCellTower!.appendInt("mobileCountryCode", value: 310) oCellTower!.appendInt("mobileNetworkCode", value: 260) oCellTower!.appendInt("age", value: 0) oCellTower!.appendInt("signalStrength", value: -95) oCellTower = nil aCellTowers = nil var aWifi: CkoJsonArray? = json.appendArray("wifiAccessPoints") aWifi!.addObject(at: 0) var oPoint: CkoJsonObject? = aWifi!.object(at: 0) oPoint!.append("macAddress", value: "01:23:45:67:89:AB") oPoint!.appendInt("signalStrength", value: 8) oPoint!.appendInt("age", value: 0) oPoint!.appendInt("signalToNoiseRatio", value: -65) oPoint!.appendInt("channel", value: 8) oPoint = nil aWifi!.addObject(at: 1) oPoint = aWifi!.object(at: 1) oPoint!.append("macAddress", value: "01:23:45:67:89:AC") oPoint!.appendInt("signalStrength", value: 4) oPoint!.appendInt("age", value: 0) oPoint = nil aWifi = nil var responseJson: String? = rest.fullRequest("POST", uriPath: "/geolocation/v1/geolocate", bodyText: json.emit()) if rest.lastMethodSuccess != true { print("\(rest.lastErrorText!)") return } // When successful, the response code is 200. if rest.responseStatusCode.intValue != 200 { // Examine the request/response to see what happened. print("response status code = \(rest.responseStatusCode.intValue)") print("response status text = \(rest.responseStatusText!)") print("response header: \(rest.responseHeader!)") print("response JSON: \(responseJson!)") print("---") print("LastRequestStartLine: \(rest.lastRequestStartLine!)") print("LastRequestHeader: \(rest.lastRequestHeader!)") return } json.emitCompact = false print("JSON request body: \(json.emit()!)") // The JSON response should look like this: // { // "location": { // "lat": 37.4248297, // "lng": -122.07346549999998 // }, // "accuracy": 1145.0 // } print("JSON response: \(responseJson!)") let jsonResp = CkoJsonObject()! jsonResp.load(responseJson) var jsonLoc: CkoJsonObject? = jsonResp.object(of: "location") // Any JSON value can be obtained as a string.. var latitude: String? = jsonLoc!.string(of: "lat") print("latitude = \(latitude!)") var longitude: String? = jsonLoc!.string(of: "lng") print("longitude = \(longitude!)") jsonLoc = nil var accuracy: String? = jsonResp.string(of: "accuracy") print("accuracy = \(accuracy!)") } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.