Sample code for 30+ languages & platforms
Dart

Shopware Upload Media (JPG File)

See more Shopware Examples

Demonstrates how to upload a media file to a Shopware shop.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

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

  final http = CkHttp();

  http.login = 'api_username';
  http.password = 'api_key';
  http.basicAuth = true;

  // Use this online tool to generate code from sample JSON:
  // Generate Code to Create JSON

  // The following JSON is sent in the request body.

  // {
  //   "file": "data:image/jpeg;base64,BASE64_DATA_HERE",
  //   "album": -9,
  //   "description": "image description",
  //   "userId": 5,
  //   "name": "my_image"
  // }

  final sbFileData = CkStringBuilder();
  sbFileData.append('data:image/jpeg;base64,');
  final bdFileData = CkBinData();
  try {
    bdFileData.loadFile('qa_data/jpg/starfish.jpg');
  } on ChilkatException {
    print('Failed to load file.');
    return;
  }

  sbFileData.append(bdFileData.getEncoded('base64'));

  final json = CkJsonObject();
  json.updateString('file', sbFileData.getAsString());
  json.updateInt('album', -9);
  json.updateString('description', 'image description');
  json.updateInt('userId', 5);
  json.updateString('name', 'my_image');

  final resp = CkHttpResponse();
  try {
    http.httpJson('POST', 'https://my-shopware-shop.com/api/media', json, 'application/json', resp);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final sbResponseBody = CkStringBuilder();
  resp.getBodySb(sbResponseBody);

  final jResp = CkJsonObject();
  jResp.loadSb(sbResponseBody);
  jResp.emitCompact = false;

  print('Response Body:');
  print(jResp.emit());

  // A 201 response code indicates success.
  final respStatusCode = resp.statusCode;
  print('Response Status Code = $respStatusCode');
  if (respStatusCode >= 400) {
    print('Response Header:');
    print(resp.header);
    print('Failed.');
    return;
  }

  // Sample JSON response:
  // (Sample code for parsing the JSON response is shown below)

  // {
  //   "success": true,
  //   "data": {
  //     "id": 6862,
  //     "location": "http:\/\/my-shopware-shop.com\/api\/media\/6862"
  //   }
  // }

  // Sample code for parsing the JSON response...
  // Use the following online tool to generate parsing code from sample JSON:
  // Generate Parsing Code from JSON

  jResp.boolOf('success');
  final dataId = jResp.intOf('data.id');
  final dataLocation = jResp.stringOf('data.location');
}