Facilitates accessing web services hosted on Amazon AWS using Unreal Engine 4.
- Current Version: 1.0
- Engine Version: Unreal Engine 4.18.3
- Clone the repository.
- Close the Unreal Editor.
- Copy the DaedalicAmazonAWSPlugin folder to Plugins folder next to your .uproject file.
- Right-click your .uproject file and select Re-generate Visual Studio project files.
- Build the resulting solution in Visual Studio.
- Start the Unreal Editor.
- Enable the plugin in Edit > Plugins > Daedalic.
First, add DaedalicAmazonAWSPlugin
to the PublicDependencyModuleNames
of the Build.cs
file of your project.
Now, after creating any HTTP request as usual, you can pass it to UDaeAmazonAWS::AuthorizeRequest
in order to have the plugin generate the matching Authorization header as outlined in https://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html.
// Create request.
FHttpModule* Http = &FHttpModule::Get();
TSharedRef<IHttpRequest> Request = Http->CreateRequest();
Request->SetVerb(TEXT("GET"));
Request->SetURL(TEXT("https://iam.amazonaws.com/?Action=ListUsers&Version=2010-05-08"));
FString Region = TEXT("us-east-1");
FString Service = TEXT("iam");
FString AccessKey = TEXT("AKIDEXAMPLE");
FString SecretKey = TEXT("wJalrXUtnFEMI/K7MDENG+bPxRfiCYEXAMPLEKEY");
// Add authorization header.
UDaeAmazonAWS::AuthorizeRequest(Request, Region, Service, AccessKey, SecretKey);
// Send request.
Request->ProcessRequest();
The method UDaeAmazonAWS::AuthorizeRequest
assumes that Verb, URL, Headers and Content have already been set, because they are part of the signature.
- If the
Host
header isn't already set, it will be parsed from the request URL. - If the
Content-Type
header isn't already set, it will be set toapplication/x-www-form-urlencoded; charset=utf-8
. - If the
X-Amz-Date header
isn't already set, the current one will be added.