DataFlex
DataFlex
AWS Security Token Service (STS) GetSessionToken
See more AWS Security Token Service Examples
Returns a set of temporary credentials for an AWS account or IAM user.Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoRest
Boolean iBTls
Integer iPort
Boolean iBAutoReconnect
Variant vAuthAws
Handle hoAuthAws
String sResponseXml
Handle hoXml
String sGetSessionTokenResponse_xmlns
String sAccessKeyId
String sSecretAccessKey
String sSessionToken
String sExpiration
String sRequestId
String sTemp1
Integer iTemp1
Boolean bTemp1
Move False To iSuccess
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatRest)) To hoRest
If (Not(IsComObjectCreated(hoRest))) Begin
Send CreateComObject of hoRest
End
// Connect to the Amazon AWS REST server.
// such as https://sts.us-west-2.amazonaws.com/
Move True To iBTls
Move 443 To iPort
Move True To iBAutoReconnect
Get ComConnect Of hoRest "sts.us-west-2.amazonaws.com" iPort iBTls iBAutoReconnect To iSuccess
// Provide AWS credentials for the REST call.
Get Create (RefClass(cComChilkatAuthAws)) To hoAuthAws
If (Not(IsComObjectCreated(hoAuthAws))) Begin
Send CreateComObject of hoAuthAws
End
Set ComAccessKey Of hoAuthAws To "AWS_ACCESS_KEY"
Set ComSecretKey Of hoAuthAws To "AWS_SECRET_KEY"
// the region should match our URL above..
// See https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
Set ComRegion Of hoAuthAws To "us-west-2"
Set ComServiceName Of hoAuthAws To "sts"
Get pvComObject of hoAuthAws to vAuthAws
Get ComSetAuthAws Of hoRest vAuthAws To iSuccess
Get ComAddQueryParam Of hoRest "Version" "2011-06-15" To iSuccess
Get ComAddQueryParam Of hoRest "Action" "GetSessionToken" To iSuccess
Get ComAddQueryParam Of hoRest "DurationSeconds" "3600" To iSuccess
Get ComFullRequestNoBody Of hoRest "GET" "/" To sResponseXml
Get ComLastMethodSuccess Of hoRest To bTemp1
If (bTemp1 <> True) Begin
Get ComLastErrorText Of hoRest To sTemp1
Showln sTemp1
Procedure_Return
End
// A successful response will have a status code equal to 200.
Get ComResponseStatusCode Of hoRest To iTemp1
If (iTemp1 <> 200) Begin
Get ComResponseStatusCode Of hoRest To iTemp1
Showln "response status code = " iTemp1
Get ComResponseStatusText Of hoRest To sTemp1
Showln "response status text = " sTemp1
Get ComResponseHeader Of hoRest To sTemp1
Showln "response header: " sTemp1
Showln "response body: " sResponseXml
Procedure_Return
End
// Examine the successful XML response (shown below)
Get Create (RefClass(cComChilkatXml)) To hoXml
If (Not(IsComObjectCreated(hoXml))) Begin
Send CreateComObject of hoXml
End
Get ComLoadXml Of hoXml sResponseXml To iSuccess
Get ComGetXml Of hoXml To sTemp1
Showln sTemp1
// Sample response:
// <?xml version="1.0" encoding="utf-8"?>
// <GetSessionTokenResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
// <GetSessionTokenResult>
// <Credentials>
// <AccessKeyId>AS........T4N</AccessKeyId>
// <SecretAccessKey>05W........ARPMr</SecretAccessKey>
// <SessionToken>IQoJb3J........llpIMI=</SessionToken>
// <Expiration>2022-09-07T00:22:51Z</Expiration>
// </Credentials>
// </GetSessionTokenResult>
// <ResponseMetadata>
// <RequestId>8bad22cc-1c55-4265-a010-45d139359404</RequestId>
// </ResponseMetadata>
// </GetSessionTokenResponse>
// Sample parse code:
Get ComGetAttrValue Of hoXml "xmlns" To sGetSessionTokenResponse_xmlns
Get ComGetChildContent Of hoXml "GetSessionTokenResult|Credentials|AccessKeyId" To sAccessKeyId
Get ComGetChildContent Of hoXml "GetSessionTokenResult|Credentials|SecretAccessKey" To sSecretAccessKey
Get ComGetChildContent Of hoXml "GetSessionTokenResult|Credentials|SessionToken" To sSessionToken
Get ComGetChildContent Of hoXml "GetSessionTokenResult|Credentials|Expiration" To sExpiration
Get ComGetChildContent Of hoXml "ResponseMetadata|RequestId" To sRequestId
// Save the session token XML to a file for use by another Chilkat example..
Get ComSaveXml Of hoXml "qa_data/tokens/aws_session_token.xml" To iSuccess
End_Procedure