Sample code for 30+ languages & platforms
Delphi ActiveX

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 Delphi ActiveX Downloads

Delphi ActiveX
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Integer;
xmlToken: TChilkatXml;
rest: TChilkatRest;
bTls: Integer;
port: Integer;
bAutoReconnect: Integer;
authAws: TChilkatAuthAws;
sbResponse: TChilkatStringBuilder;
statusCode: Integer;
xml: TChilkatXml;

begin
success := 0;

// 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.
xmlToken := TChilkatXml.Create(Self);
success := xmlToken.LoadXmlFile('qa_data/tokens/aws_session_token.xml');
if (success = 0) then
  begin
    Memo1.Lines.Add(xmlToken.LastErrorText);
    Exit;
  end;

rest := TChilkatRest.Create(Self);

// Connect to the Amazon AWS REST server.
bTls := 1;
port := 443;
bAutoReconnect := 1;
success := rest.Connect('s3.amazonaws.com',port,bTls,bAutoReconnect);

// Provide AWS credentials for the REST call.
authAws := TChilkatAuthAws.Create(Self);

// 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';
success := rest.SetAuthAws(authAws.ControlInterface);

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

sbResponse := TChilkatStringBuilder.Create(Self);
success := rest.FullRequestNoBodySb('GET','/',sbResponse.ControlInterface);
if (success <> 1) then
  begin
    Memo1.Lines.Add(rest.LastErrorText);
    Exit;
  end;

statusCode := rest.ResponseStatusCode;
Memo1.Lines.Add('Response status code = ' + IntToStr(statusCode));

xml := TChilkatXml.Create(Self);
xml.LoadSb(sbResponse.ControlInterface,1);
Memo1.Lines.Add(xml.GetXml());

if (statusCode <> 200) then
  begin
    Memo1.Lines.Add('Failed.  See error information in the XML.');
    Exit;
  end;
end;