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...) Amazon SP-API Get FeedsSee more Amazon SP-API ExamplesReturns feed details for the feeds that match the filters that you specify. For more information, see https://developer-docs.amazon.com/sp-api/docs/feeds-api-v2021-06-30-reference#get-feeds2021-06-30feeds
func chilkatTest() { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let authAws = CkoAuthAws()! authAws.accessKey = "AWS_ACCESS_KEY" authAws.secretKey = "AWS_SECRET_KEY" authAws.serviceName = "execute-api" // Use the region that is correct for your needs. authAws.region = "eu-west-1" let rest = CkoRest()! var success: Bool = rest.connect("sandbox.sellingpartnerapi-eu.amazon.com", port: 443, tls: true, autoReconnect: true) if success == false { print("\(rest.lastErrorText!)") return } success = rest.setAuthAws(authAws) // Load the previously obtained LWA access token. // See Fetch SP-API LWA Access Token let jsonToken = CkoJsonObject()! success = jsonToken.loadFile("qa_data/tokens/sp_api_lwa_token.json") if success == false { print("Failed to load LWA access token.") return } // Add the x-amz-access-token request header. var lwa_token: String? = jsonToken.string(of: "access_token") rest.clearAllHeaders() rest.addHeader("x-amz-access-token", value: lwa_token) rest.clearAllQueryParams() rest.addQueryParam("feedTypes", value: "POST_PRODUCT_DATA") rest.addQueryParam("pageSize", value: "10") rest.addQueryParam("processingStatuses", value: "CANCELLED,DONE") let sbResponse = CkoStringBuilder()! var path: String? = "/feeds/2021-06-30/feeds" success = rest.fullRequestNoBodySb("GET", uriPath: path, sb: sbResponse) if success == false { print("\(rest.lastErrorText!)") return } // Examine the response status. var statusCode: Int = rest.responseStatusCode.intValue if statusCode != 200 { print("Response status text: \(rest.responseStatusText!)") print("Response body: ") print("\(sbResponse.getAsString()!)") print("Failed.") return } print("\(sbResponse.getAsString()!)") // If successful, gets a JSON response such as the following: // { // "feeds": [ // { // "feedId": "FeedId1", // "feedType": "POST_PRODUCT_DATA", // "createdTime": "2019-12-11T13:16:24.630Z", // "processingStatus": "CANCELLED", // "processingStartTime": "2019-12-11T13:16:24.630Z", // "processingEndTime": "2019-12-11T13:16:24.630Z" // } // ], // "nextToken": "VGhpcyB0b2tlbiBpcyBvcGFxdWUgYW5kIGludGVudGlvbmFsbHkgb2JmdXNjYXRlZA==" // } // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON let json = CkoJsonObject()! json.loadSb(sbResponse) var feedId: String? var feedType: String? var createdTime: String? var processingStatus: String? var processingStartTime: String? var processingEndTime: String? var nextToken: String? = json.string(of: "nextToken") var i: Int = 0 var count_i: Int = json.size(ofArray: "feeds").intValue while i < count_i { json.i = i feedId = json.string(of: "feeds[i].feedId") feedType = json.string(of: "feeds[i].feedType") createdTime = json.string(of: "feeds[i].createdTime") processingStatus = json.string(of: "feeds[i].processingStatus") processingStartTime = json.string(of: "feeds[i].processingStartTime") processingEndTime = json.string(of: "feeds[i].processingEndTime") i = i + 1 } print("Success!") } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.