Sample code for 30+ languages & platforms
Dart

S3 List Buckets using an STS Session Token

See more AWS Security Token Service Examples

This is an example showing how to use an STS session token in an Amazon AWS request. This example will list S3 buckets using a previously obtained session token.

Chilkat Dart Downloads

Dart
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.

  // See Get AWS STS Session Token for sample code to get the session token XML.
  final xmlToken = CkXml();
  try {
    xmlToken.loadXmlFile('qa_data/tokens/aws_session_token.xml');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final rest = CkRest();

  // Connect to the Amazon AWS REST server.
  final bTls = true;
  final port = 443;
  final bAutoReconnect = true;
  rest.connect('s3.amazonaws.com', port, bTls, bAutoReconnect);

  // Provide AWS credentials for the REST call.
  final authAws = CkAuthAws();

  // The purpose of this example is to show how to use the temporary AccessKeyId, SecretAccessKey, and SessionToken.
  authAws.accessKey = xmlToken.getChildContent('GetSessionTokenResult|Credentials|AccessKeyId');
  authAws.secretKey = xmlToken.getChildContent('GetSessionTokenResult|Credentials|SecretAccessKey');
  authAws.serviceName = 's3';
  rest.setAuthAws(authAws);

  rest.addQueryParam('X-Amz-Security-Token', xmlToken.getChildContent('GetSessionTokenResult|Credentials|SessionToken'));

  final sbResponse = CkStringBuilder();
  try {
    rest.fullRequestNoBodySb('GET', '/', sbResponse);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final statusCode = rest.responseStatusCode;
  print('Response status code = $statusCode');

  final xml = CkXml();
  xml.loadSb(sbResponse, true);
  print(xml.getXml());

  if (statusCode != 200) {
    print('Failed.  See error information in the XML.');
    return;
  }
}