PureBasic
PureBasic
Shopware List Categories
See more Shopware Examples
List categories in your Shopware database.Chilkat PureBasic Downloads
IncludeFile "CkHttp.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkJsonObject.pb"
Procedure ChilkatExample()
success.i = 0
; 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 = 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 = 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