Sample code for 30+ languages & platforms
Dart

Wasabi Upload File

See more Wasabi Examples

Demonstrates how to upload a file to a Wasabi bucket.

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();

  // Insert your access key here:
  http.awsAccessKey = 'access-key';

  // Insert your secret key here:
  http.awsSecretKey = 'secret-key';

  http.awsEndpoint = 's3.wasabisys.com';

  final bucketName = 'chilkattest';
  final objectName = 'seahorse.jpg';
  final localFilePath = 'qa_data/jpg/seahorse.jpg';
  final contentType = 'image/jpg';

  http.keepResponseBody = true;

  try {
    http.s3UploadFile(localFilePath, contentType, bucketName, objectName);
    print('File uploaded.');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);

    final xml = CkXml();
    xml.loadXml(http.lastResponseBody);
    print(xml.getXml());
  }
}