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...) effectconnect Read OrderlistGet a set of orders filtered by the parameters in the XML payload.
func chilkatTest() { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. var success: Bool var fullUri: String? = "https://submit.effectconnect.com/orderlist" var uri: String? = "/orderlist" var apiVersion: String? = "2.0" let http = CkoHttp()! // Use your effectconnect public key here.. http.setRequestHeader("KEY", value: "PUBLIC_KEY") http.setRequestHeader("VERSION", value: apiVersion) http.setRequestHeader("URI", value: uri) http.setRequestHeader("RESPONSETYPE", value: "XML") http.setRequestHeader("RESPONSELANGUAGE", value: "en") // Get the current date/time in timestamp format. let dt = CkoDateTime()! dt.setFromCurrentSystemTime() var timestamp: String? = dt.getAsTimestamp(true) http.setRequestHeader("TIME", value: timestamp) print("timestamp = \(timestamp!)") // Create the following XML request body: // <?xml version="1.0" encoding="utf-8"?> // <list> // <filters> // <fromDateFilter> // <filterValue>2018-09-14T12:12:12+01:00</filterValue> // </fromDateFilter> // <toDateFilter> // <filterValue>2019-04-13T23:59:59+01:00</filterValue> // </toDateFilter> // <hasStatusFilter> // <filterValue>paid</filterValue> // </hasStatusFilter> // <hasTagFilter> // <filterValue> // <tagName>Test</tagName> // <exclude>false</exclude> // </filterValue> // </hasTagFilter> // </filters> // </list> // Use this online tool to generate the code from sample XML: // Generate Code to Create XML let xml = CkoXml()! xml.tag = "list" xml.updateChildContent("filters|fromDateFilter|filterValue", value: "2018-09-14T12:12:12+01:00") xml.updateChildContent("filters|toDateFilter|filterValue", value: "2019-04-13T23:59:59+01:00") xml.updateChildContent("filters|hasStatusFilter|filterValue", value: "paid") xml.updateChildContent("filters|hasTagFilter|filterValue|tagName", value: "Test") xml.updateChildContent("filters|hasTagFilter|filterValue|exclude", value: "false") xml.emitCompact = true let sbXml = CkoStringBuilder()! xml.getSb(sbXml) // Build a string-to-sign and sign it using our effectconnect private key let sbStringToSign = CkoStringBuilder()! sbStringToSign.appendInt(sbXml.length.intValue) sbStringToSign.append("POST") sbStringToSign.append(uri) sbStringToSign.append(apiVersion) sbStringToSign.append(timestamp) let crypt = CkoCrypt2()! crypt.macAlgorithm = "hmac" crypt.hashAlgorithm = "sha512" crypt.encodingMode = "base64" // Use your effectconnect private key here: crypt.setMacKeyString("PRIVATE_KEY") http.setRequestHeader("SIGNATURE", value: crypt.macStringENC(sbStringToSign.getAsString())) // Send the POST.. var resp: CkoHttpResponse? = http.postXml(fullUri, xmlDoc: xml.getXml(), charset: "utf-8") if http.lastMethodSuccess == false { print("\(http.lastErrorText!)") return } print("response status code = \(resp!.statusCode.intValue)") // Examine the response. The response status code can be 200 for both errors and success. // The success or error is based on the XML returned in the response body. let xmlResp = CkoXml()! xmlResp.load(resp!.bodyStr) resp = nil print("response body:") print("\(xmlResp.getXml()!)") // Remove previously set headers (unless we want the same headers for the next request, // in which case we may remove or update individual headers by calling SetRequestHeader. http.clearHeaders() } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.