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 2) eBay -- Upload Bulk Data using FileTransferServiceDemonstrates how to upload your data file using the eBay File Transfer API.
func chilkatTest() { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Use a previously obtained access token. The token should look something like this: // "AgAAAA**AQA ..." var accessToken: String? = "EBAY_ACCESS_TOKEN" let http = CkoHttp() var apiCall: String? = "uploadFile" var fileAttachmentUuid: String? = "<urn:uuid:bb47b86a237311e793ae92361f002671>" var xmlUuid: String? = "<urn:uuid:bb47b766237311e793ae92361f002671>" let req = CkoHttpRequest() req.HttpVerb = "POST" req.Path = "/FileTransferService" let sbContentType = CkoStringBuilder() sbContentType.Append("multipart/related; type=\"application/xop+xml\"; start=\"XMLUUID\"; start-info=\"text/xml\"") var replaceCount: Int = sbContentType.Replace("XMLUUID", replacement: xmlUuid).intValue req.ContentType = sbContentType.GetAsString() req.AddHeader("X-EBAY-SOA-SERVICE-NAME", value: "FileTransferService") req.AddHeader("X-EBAY-SOA-OPERATION-NAME", value: apiCall) req.AddHeader("X-EBAY-SOA-SECURITY-TOKEN", value: accessToken) req.AddHeader("X-EBAY-SOA-REQUEST-DATA-FORMAT", value: "XML") req.AddHeader("X-EBAY-SOA-RESPONSE-DATA-FORMAT", value: "XML") req.AddHeader("User-Agent", value: "AnythingYouWant") var pathToFileOnDisk1: String? = "qa_data/ebay/uploadFileRequest.xml" var success: Bool = req.AddFileForUpload("uploadFileRequest.xml", path: pathToFileOnDisk1) if success != true { print("\(req.LastErrorText)") return } var pathToFileOnDisk2: String? = "qa_data/ebay/BulkDataExchangeRequests.gz" success = req.AddFileForUpload("BulkDataExchangeRequests.gz", path: pathToFileOnDisk2) if success != true { print("\(req.LastErrorText)") return } // Add sub-headers for each file in the request. req.AddSubHeader(0, name: "Content-Type", value: "application/xop+xml; charset=UTF-8; type=\"text/xml\"") req.AddSubHeader(0, name: "Content-Transfer-Encoding", value: "binary") req.AddSubHeader(0, name: "Content-ID", value: xmlUuid) req.AddSubHeader(1, name: "Content-Type", value: "application/octet-stream") req.AddSubHeader(1, name: "Content-Transfer-Encoding", value: "binary") req.AddSubHeader(1, name: "Content-ID", value: fileAttachmentUuid) var resp: CkoHttpResponse? = http.SynchronousRequest("storage.sandbox.ebay.com", port: 443, ssl: true, req: req) if http.LastMethodSuccess != true { print("\(http.LastErrorText)") return } print("Response status code = \(resp!.StatusCode.intValue)") let xml = CkoXml() xml.LoadXml(resp!.BodyStr) if resp!.StatusCode.intValue != 200 { print("\(xml.GetXml())") print("Failed.") resp = nil return } // We still may have a failure. The XML needs to be checked. // A failed response might look like this: // <?xml version="1.0" encoding="UTF-8" ?> // <uploadFileResponse xmlns="http://www.ebay.com/marketplace/services"> // <ack>Failure</ack> // <errorMessage> // <error> // <errorId>1</errorId> // <domain>Marketplace</domain> // <severity>Error</severity> // <category>Application</category> // <message>Task Reference Id is invalid</message> // <subdomain>FileTransfer</subdomain> // </error> // </errorMessage> // <version>1.1.0</version> // <timestamp>2017-04-18T01:05:27.475Z</timestamp> // </uploadFileResponse> // A successful response looks like this: // <?xml version="1.0" encoding="UTF-8" ?> // <uploadFileResponse xmlns="http://www.ebay.com/marketplace/services"> // <ack>Success</ack> // <version>1.1.0</version> // <timestamp>2017-04-18T01:22:47.853Z</timestamp> // </uploadFileResponse> print("\(xml.GetXml())") // Get the "ack" to see if it's "Failure" or "Success" if xml.ChildContentMatches("ack", pattern: "Success", caseSensitive: false) { print("Success.") } else { print("Failure.") } resp = nil } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.