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
(Swift) Debug REST HTTP RequestDemonstrates how to generate the HTTP Request (with all headers intact) without actually sending the request. Note: This example requires Chilkat v9.5.0.77 or later.
func chilkatTest() { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // This example will connect to the web server, but does not actually send a request. // When in DebugMode, the request is composed in memory and can be retrieved by calling // GetLastDebugRequest. let rest = CkoRest()! // Connect Code... // URL: https://test-api.service.hmrc.gov.uk/organisations/vat/MY_HMRC_VRN/returns var bTls: Bool = true var port: Int = 443 var bAutoReconnect: Bool = true var success: Bool = rest.connect("test-api.service.hmrc.gov.uk", port: port, tls: bTls, autoReconnect: bAutoReconnect) if success != true { print("ConnectFailReason: \(rest.connectFailReason.intValue)") print("\(rest.lastErrorText!)") return } // Build the request body... let json = CkoJsonObject()! json.update("periodKey", value: "A001") json.updateNumber("vatDueSales", numericStr: "105.50") json.updateNumber("vatDueAcquisitions", numericStr: "-100.45") json.updateNumber("totalVatDue", numericStr: "5.05") json.updateNumber("vatReclaimedCurrPeriod", numericStr: "105.15") json.updateNumber("netVatDue", numericStr: "100.10") json.updateInt("totalValueSalesExVAT", value: 300) json.updateInt("totalValuePurchasesExVAT", value: 300) json.updateInt("totalValueGoodsSuppliedExVAT", value: 3000) json.updateInt("totalAcquisitionsExVAT", value: 3000) json.updateBool("finalised", value: true) // Add Headers... rest.addHeader("Accept", value: "application/vnd.hmrc.1.0+json") rest.addHeader("Authorization", value: "Bearer HMRC_ACCESS_TOKEN") rest.addHeader("Content-Type", value: "application/json") let sbRequestBody = CkoStringBuilder()! json.emitSb(sbRequestBody) // Set DebugMode so that no request is actually sent. rest.debugMode = true let sbResponseBody = CkoStringBuilder()! success = rest.fullRequestSb("POST", uriPath: "/organisations/vat/MY_HMRC_VRN/returns", requestBody: sbRequestBody, responseBody: sbResponseBody) if success != true { print("\(rest.lastErrorText!)") return } // Get the exact contents of what would've been sent. // This includes the HTTP start line, the HTTP request headers, and the request body. // Given that it's possible for the request body to contain binary data, // the GetLastDebugRequest fetches into a BinData object. // In this case, however, our request body contained JSON, so we can // examine it as a string.. let bdRequest = CkoBinData()! success = rest.getLastDebugRequest(bdRequest) print("----") print("\(bdRequest.getString("utf-8")!)") print("----") // The output for the above case: // POST /organisations/vat/MY_HMRC_VRN/returns HTTP/1.1 // Accept: application/vnd.hmrc.1.0+json // Host: test-api.service.hmrc.gov.uk // Authorization: Bearer HMRC_ACCESS_TOKEN // Content-Type: application/json // Content-Length: 281 // // {"periodKey":"A001","vatDueSales":105.50, ... ,"finalised":true} // // } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.