DataFlex
DataFlex
Shopware List Media
See more Shopware Examples
Demonstrates how to get a list of media in Shopware.Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoHttp
Variant vSbResponseBody
Handle hoSbResponseBody
Handle hoJResp
Integer iId
Integer iAlbumId
String sName
String sDescription
String sPath
String sV_type
String sExtension
Integer iUserId
String sCreated
Integer iFileSize
String sWidth
String sHeight
String sAttribute
Integer iTotal
Integer i
Integer iCount_i
String sTemp1
Move False To iSuccess
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
Set ComLogin Of hoHttp To "api_username"
Set ComPassword Of hoHttp To "api_key"
Set ComBasicAuth Of hoHttp To True
Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
Send CreateComObject of hoSbResponseBody
End
Get pvComObject of hoSbResponseBody to vSbResponseBody
Get ComQuickGetSb Of hoHttp "https://my-shopware-shop.com/api/media?limit=10" vSbResponseBody To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
If (Not(IsComObjectCreated(hoJResp))) Begin
Send CreateComObject of hoJResp
End
Get pvComObject of hoSbResponseBody to vSbResponseBody
Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
Set ComEmitCompact Of hoJResp To False
Showln "Response Body:"
Get ComEmit Of hoJResp To sTemp1
Showln sTemp1
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "data": [
// {
// "id": 6708,
// "albumId": -9,
// "name": "sonnenblume",
// "description": "",
// "path": "https:\/\/my-shopware-shop.com\/media\/pdf\/2f\/26\/52\/sonnenblume.zip",
// "type": "ARCHIVE",
// "extension": "zip",
// "userId": 5,
// "created": "2021-03-01T00:00:00+0100",
// "fileSize": 216905,
// "width": null,
// "height": null,
// "attribute": null
// },
// {
// "id": 6709,
// "albumId": -9,
// "name": "csinventur_anleitung",
// "description": "",
// "path": "https:\/\/my-shopware-shop.com\/media\/pdf\/19\/21\/86\/csinventur_anleitung.pdf",
// "type": "PDF",
// "extension": "pdf",
// "userId": 5,
// "created": "2021-03-01T00:00:00+0100",
// "fileSize": 837131,
// "width": null,
// "height": null,
// "attribute": null
// },
// {
// "id": 6710,
// "albumId": -9,
// "name": "photos_fre_carousel_elevatorpitch_620x252",
// "description": "",
// "path": "https:\/\/my-shopware-shop.com\/media\/pdf\/d8\/d7\/b4\/photos_fre_carousel_elevatorpitch_620x252.mp4",
// "type": "VIDEO",
// "extension": "mp4",
// "userId": 5,
// "created": "2021-03-01T00:00:00+0100",
// "fileSize": 2499157,
// "width": null,
// "height": null,
// "attribute": null
// },
//
// ...
// ],
// "total": 31,
// "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
Get ComIntOf Of hoJResp "total" To iTotal
Get ComBoolOf Of hoJResp "success" To iSuccess
Move 0 To i
Get ComSizeOfArray Of hoJResp "data" To iCount_i
While (i < iCount_i)
Set ComI Of hoJResp To i
Get ComIntOf Of hoJResp "data[i].id" To iId
Get ComIntOf Of hoJResp "data[i].albumId" To iAlbumId
Get ComStringOf Of hoJResp "data[i].name" To sName
Get ComStringOf Of hoJResp "data[i].description" To sDescription
Get ComStringOf Of hoJResp "data[i].path" To sPath
Get ComStringOf Of hoJResp "data[i].type" To sV_type
Get ComStringOf Of hoJResp "data[i].extension" To sExtension
Get ComIntOf Of hoJResp "data[i].userId" To iUserId
Get ComStringOf Of hoJResp "data[i].created" To sCreated
Get ComIntOf Of hoJResp "data[i].fileSize" To iFileSize
Get ComStringOf Of hoJResp "data[i].width" To sWidth
Get ComStringOf Of hoJResp "data[i].height" To sHeight
Get ComStringOf Of hoJResp "data[i].attribute" To sAttribute
Move (i + 1) To i
Loop
End_Procedure