Dart Requires Chilkat v11.0.0+
Dart
OSS Delete Bucket Objects (Alibaba Cloud)
See more Alibaba Cloud OSS Examples
Demonstrates how to delete objects in a bucket.The Chilkat S3 functions in the HTTP class are compatible with Alibaba Cloud's OSS service.
Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final http = CkHttp();
// Insert your AccessKey ID here:
http.awsAccessKey = 'access-key';
// Insert your AccessKey Secret here:
http.awsSecretKey = 'secret-key';
// To delete objects from a bucket located in a different region, use the domain for that region, such as "oss-cn-hangzhou.aliyuncs.com "
// See Alibaba Object Storage Service Regions and Endpoints
http.awsEndpoint = 'oss-us-east-1.aliyuncs.com';
final bucketName = 'chilkat';
final objectName1 = 'seahorse.jpg';
final objectName2 = 'orchard.json';
final st = CkStringTable();
st.append(objectName1);
st.append(objectName2);
final jsonResp = CkJsonObject();
try {
http.s3DeleteObjects(bucketName, st, jsonResp);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
print('Response status code = ${http.lastStatus}');
// Display the JSON response.
jsonResp.emitCompact = false;
print(jsonResp.emit());
}