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
(PureBasic) Shopware List CategoriesSee more Shopware ExamplesList categories in your Shopware database. For more information, see https://developers.shopware.com/developers-guide/rest-api/api-resource-categories/
IncludeFile "CkHttp.pb" IncludeFile "CkStringBuilder.pb" IncludeFile "CkJsonObject.pb" Procedure ChilkatExample() ; This example assumes the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. http.i = CkHttp::ckCreate() If http.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkHttp::setCkLogin(http, "api_username") CkHttp::setCkPassword(http, "api_key") CkHttp::setCkBasicAuth(http, 1) sbResponseBody.i = CkStringBuilder::ckCreate() If sbResponseBody.i = 0 Debug "Failed to create object." ProcedureReturn EndIf success.i = CkHttp::ckQuickGetSb(http,"https://my-shopware-shop.com/api/categories?limit=2",sbResponseBody) If success = 0 Debug CkHttp::ckLastErrorText(http) CkHttp::ckDispose(http) CkStringBuilder::ckDispose(sbResponseBody) ProcedureReturn EndIf jResp.i = CkJsonObject::ckCreate() If jResp.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkJsonObject::ckLoadSb(jResp,sbResponseBody) CkJsonObject::setCkEmitCompact(jResp, 0) Debug "Response Body:" Debug CkJsonObject::ckEmit(jResp) ; Sample JSON response: ; (Sample code for parsing the JSON response is shown below) ; { ; "data": [ ; { ; "id": 1, ; "active": true, ; "name": "Root", ; "position": 0, ; "parentId": null, ; "mediaId": null, ; "childrenCount": "3", ; "articleCount": "0" ; }, ; { ; "id": 384, ; "active": true, ; "name": "Deutsch", ; "position": 0, ; "parentId": 1, ; "mediaId": null, ; "childrenCount": "9", ; "articleCount": "32" ; } ; ], ; "total": 118, ; "success": true ; } ; Sample code for parsing the JSON response... ; Use the following online tool to generate parsing code from sample JSON: ; Generate Parsing Code from JSON id.i active.i name.s position.i parentId.s mediaId.s childrenCount.s articleCount.s total.i = CkJsonObject::ckIntOf(jResp,"total") success.i = CkJsonObject::ckBoolOf(jResp,"success") i.i = 0 count_i.i = CkJsonObject::ckSizeOfArray(jResp,"data") While i < count_i CkJsonObject::setCkI(jResp, i) id = CkJsonObject::ckIntOf(jResp,"data[i].id") active = CkJsonObject::ckBoolOf(jResp,"data[i].active") name = CkJsonObject::ckStringOf(jResp,"data[i].name") position = CkJsonObject::ckIntOf(jResp,"data[i].position") parentId = CkJsonObject::ckStringOf(jResp,"data[i].parentId") mediaId = CkJsonObject::ckStringOf(jResp,"data[i].mediaId") childrenCount = CkJsonObject::ckStringOf(jResp,"data[i].childrenCount") articleCount = CkJsonObject::ckStringOf(jResp,"data[i].articleCount") i = i + 1 Wend CkHttp::ckDispose(http) CkStringBuilder::ckDispose(sbResponseBody) CkJsonObject::ckDispose(jResp) ProcedureReturn EndProcedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.