Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Swift 3,4,5... Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(Swift 3,4,5...) Amazon SP-API Get Feeds

See more Amazon SP-API Examples

Returns 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

Chilkat Downloads for the Swift Programming Language

MAC OS X (Cocoa) Objective-C/Swift Libs

iOS Objective-C/Swift Libs

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.