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

DataFlex 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

 

 

 

(DataFlex) eBay -- Get Inventory Items

Retrieves up to 100 inventory items. If an eBay account has more than 100 inventory items, then the Nth page of inventory items can be retrieved, until there are no more pages. (The first page of records has a value of 0, the second page of records has a value of 1, etc.)

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    String sAccessToken
    Handle hoHttp
    Handle hoSbUrl
    Integer iNumReplaced
    Handle hoSbAuth
    String sStrJson
    Handle hoJson
    Integer iNumItems
    Integer i
    Integer j
    Variant vBrands
    Handle hoBrands
    Integer iNumBrands
    Variant vFeatures
    Handle hoFeatures
    Integer iNumFeatures
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    // Use a previously obtained user token.  The token should look something like this:
    // "v^1.1#i^1#r^0#p^3#I^3#f^0#t^H4sIAAAAAAAAAOVXa2wUVRTu9k ... 89xuCWYREAAA=="
    Move "EBAY_ACCESS_TOKEN" To sAccessToken

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    // This example uses the sandbox.  
    // Change "api.sandbox.ebay.com" to "api.ebay.com" to use the production system.
    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbUrl
    If (Not(IsComObjectCreated(hoSbUrl))) Begin
        Send CreateComObject of hoSbUrl
    End
    Get ComAppend Of hoSbUrl "https://api.sandbox.ebay.com/sell/inventory/v1/inventory_item?limit=_LIMIT&offset=_OFFSET" To iSuccess
    Get ComReplace Of hoSbUrl "_LIMIT" "100" To iNumReplaced
    // The offset indicates the page number.  Offset 0 gets items 0-99 (if limit=100),
    // Offset 1 gets items 100-199, etc.
    Get ComReplace Of hoSbUrl "_OFFSET" "0" To iNumReplaced

    // Add our access token to the request, which is a header
    // having the following format:
    // Authorization: Bearer <userAccessToken>
    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbAuth
    If (Not(IsComObjectCreated(hoSbAuth))) Begin
        Send CreateComObject of hoSbAuth
    End
    Get ComAppend Of hoSbAuth "Bearer " To iSuccess
    Get ComAppend Of hoSbAuth sAccessToken To iSuccess
    Get ComGetAsString Of hoSbAuth To sTemp1
    Send ComSetRequestHeader To hoHttp "Authorization" sTemp1

    Set ComAccept Of hoHttp To "application/json"
    Set ComAllowGzip Of hoHttp To True

    Get ComGetAsString Of hoSbUrl To sTemp1
    Get ComQuickGetStr Of hoHttp sTemp1 To sStrJson
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 <> True) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // The response should be JSON, even if an error.
    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComLoad Of hoJson sStrJson To iSuccess
    Set ComEmitCompact Of hoJson To False

    Get ComLastStatus Of hoHttp To iTemp1
    Showln "Response status code = " iTemp1

    Get ComLastStatus Of hoHttp To iTemp1
    If (iTemp1 <> 200) Begin
        Get ComEmit Of hoJson To sTemp1
        Showln sTemp1
        Showln "Failed"
        Procedure_Return
    End

    // See the sample JSON response below..
    Get ComEmit Of hoJson To sTemp1
    Showln sTemp1

    // To iterate over the inventory items..
    Get ComSizeOfArray Of hoJson "inventoryItems" To iNumItems
    Move 0 To i

    While (i < iNumItems)
        Set ComI Of hoJson To i
        Get ComStringOf Of hoJson "inventoryItems[i].sku" To sTemp1
        Showln i ") sku: " sTemp1
        Get ComStringOf Of hoJson "inventoryItems[i].product.title" To sTemp1
        Showln "    title: " sTemp1

        Get ComHasMember Of hoJson "inventoryItems[i].product.aspects.Brand" To bTemp1
        If (bTemp1 = True) Begin
            Get ComArrayOf Of hoJson "inventoryItems[i].product.aspects.Brand" To vBrands
            If (IsComObject(vBrands)) Begin
                Get Create (RefClass(cComChilkatJsonArray)) To hoBrands
                Set pvComObject Of hoBrands To vBrands
            End
            Get ComSize Of hoBrands To iNumBrands
            Move 0 To j
            While (j < iNumBrands)
                Get ComStringAt Of hoBrands j To sTemp1
                Showln "    brand: " sTemp1
                Move j + 1 To j
            Loop

        End

        Get ComHasMember Of hoJson "inventoryItems[i].product.aspects.Feature" To bTemp1
        If (bTemp1 = True) Begin
            Get ComArrayOf Of hoJson "inventoryItems[i].product.aspects.Feature" To vFeatures
            If (IsComObject(vFeatures)) Begin
                Get Create (RefClass(cComChilkatJsonArray)) To hoFeatures
                Set pvComObject Of hoFeatures To vFeatures
            End
            Get ComSize Of hoFeatures To iNumFeatures
            Move 0 To j
            While (j < iNumFeatures)
                Get ComStringAt Of hoFeatures j To sTemp1
                Showln "    feature: " sTemp1
                Move j + 1 To j
            Loop

        End

        Move i + 1 To i
    Loop

    // The output of the above loop:

    // 0) sku: GP-Cam-01
    //     title: GoPro Hero4 Helmet Cam
    //     brand: GoPro
    // 1) sku: AppleWatch
    //     title: Test listing - do not bid or buy - awesome Apple watch test 2
    //     feature: Water resistance
    //     feature: GPS
    // 
    // 

    // A sample JSON response with 2 inventory items.

    // { 
    //   "total": 2,
    //   "size": 2,
    //   "href": "/sell/inventory/v1/inventory_item?offset=0&limit=100",
    //   "limit": 100,
    //   "inventoryItems": [
    //     { 
    //       "sku": "GP-Cam-01",
    //       "product": { 
    //         "title": "GoPro Hero4 Helmet Cam",
    //         "aspects": { 
    //           "Brand": [
    //             "GoPro"
    //           ],
    //           "Optical Zoom": [
    //             "10x"
    //           ],
    //           "Type": [
    //             "Helmet/Action"
    //           ],
    //           "Recording Definition": [
    //             "High Definition"
    //           ],
    //           "Media Format": [
    //             "Flash Drive (SSD)"
    //           ],
    //           "Storage Type": [
    //             "Removable"
    //           ]
    //         },
    //         "description": "New GoPro Hero4 Helmet Cam. Unopened box.",
    //         "imageUrls": [
    //           "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1000.jpg",
    //           "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1001.jpg",
    //           "http://i.ebayimg.com/images/i/182196556219-0-1/s-l1002.jpg"
    //         ]
    //       },
    //       "condition": "NEW",
    //       "availability": { 
    //         "pickupAtLocationAvailability": [
    //         ],
    //         "shipToLocationAvailability": { 
    //           "quantity": 50
    //         }
    //       }
    //     },
    //     { 
    //       "sku": "AppleWatch",
    //       "product": { 
    //         "title": "Test listing - do not bid or buy - awesome Apple watch test 2",
    //         "aspects": { 
    //           "CPU": [
    //             "Dual-Core Processor"
    //           ],
    //           "Feature": [
    //             "Water resistance",
    //             "GPS"
    //           ]
    //         },
    //         "description": "Test listing - do not bid or buy\n Built-in GPS. Water resistance to 50 meters.1 A new lightning-fast dual-core processor. And a display that?s two times brighter than before. Full of features that help you stay active, motivated, and connected, Apple Watch Series 2 is designed for all the ways you move ",
    //         "upc": [
    //           "888462079525"
    //         ],
    //         "imageUrls": [
    //           "http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/S/1/S1/42/S1-42-alu-silver-sport-white-grid?wid=332&hei=392&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0.5,0.5,0,0&iccEmbed=0&layer=comp&.v=1472247758975",
    //           "http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/4/2/42/stainless/42-stainless-sport-white-grid?wid=332&hei=392&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0.5,0.5,0,0&iccEmbed=0&layer=comp&.v=1472247760390",
    //           "http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/4/2/42/ceramic/42-ceramic-sport-cloud-grid?wid=332&hei=392&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0.5,0.5,0,0&iccEmbed=0&layer=comp&.v=1472247758007"
    //         ]
    //       },
    //       "condition": "NEW",
    //       "packageWeightAndSize": { 
    //         "dimensions": { 
    //           "width": 15.0,
    //           "length": 10.0,
    //           "height": 5.0,
    //           "unit": "INCH"
    //         },
    //         "weight": { 
    //           "value": 2.0,
    //           "unit": "POUND"
    //         }
    //       },
    //       "availability": { 
    //         "pickupAtLocationAvailability": [
    //         ],
    //         "shipToLocationAvailability": { 
    //           "quantity": 10
    //         }
    //       }
    //     }
    //   ]
    // }
    // 
    // 
    // 


End_Procedure

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.