Sample code for 30+ languages & platforms
Unicode C++

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 Unicode C++ Downloads

Unicode C++
#include <CkRestW.h>
#include <CkAuthAwsW.h>
#include <CkXmlW.h>

void ChilkatSample(void)
    {
    bool success = false;

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkRestW rest;

    // Connect to the Amazon AWS REST server.
    // such as https://sts.us-west-2.amazonaws.com/
    bool bTls = true;
    int port = 443;
    bool bAutoReconnect = true;
    success = rest.Connect(L"sts.us-west-2.amazonaws.com",port,bTls,bAutoReconnect);

    // Provide AWS credentials for the REST call.
    CkAuthAwsW authAws;
    authAws.put_AccessKey(L"AWS_ACCESS_KEY");
    authAws.put_SecretKey(L"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
    authAws.put_Region(L"us-west-2");
    authAws.put_ServiceName(L"sts");

    rest.SetAuthAws(authAws);

    rest.AddQueryParam(L"Version",L"2011-06-15");
    rest.AddQueryParam(L"Action",L"GetSessionToken");
    rest.AddQueryParam(L"DurationSeconds",L"3600");

    const wchar_t *responseXml = rest.fullRequestNoBody(L"GET",L"/");
    if (rest.get_LastMethodSuccess() != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    // A successful response will have a status code equal to 200.
    if (rest.get_ResponseStatusCode() != 200) {
        wprintf(L"response status code = %d\n",rest.get_ResponseStatusCode());
        wprintf(L"response status text = %s\n",rest.responseStatusText());
        wprintf(L"response header: %s\n",rest.responseHeader());
        wprintf(L"response body: %s\n",responseXml);
        return;
    }

    // Examine the successful XML response (shown below)
    CkXmlW xml;
    xml.LoadXml(responseXml);
    wprintf(L"%s\n",xml.getXml());

    // 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:
    const wchar_t *GetSessionTokenResponse_xmlns = xml.getAttrValue(L"xmlns");
    const wchar_t *AccessKeyId = xml.getChildContent(L"GetSessionTokenResult|Credentials|AccessKeyId");
    const wchar_t *SecretAccessKey = xml.getChildContent(L"GetSessionTokenResult|Credentials|SecretAccessKey");
    const wchar_t *SessionToken = xml.getChildContent(L"GetSessionTokenResult|Credentials|SessionToken");
    const wchar_t *Expiration = xml.getChildContent(L"GetSessionTokenResult|Credentials|Expiration");
    const wchar_t *RequestId = xml.getChildContent(L"ResponseMetadata|RequestId");

    // Save the session token XML to a file for use by another Chilkat example..
    success = xml.SaveXml(L"qa_data/tokens/aws_session_token.xml");
    }