This page is not the current release of O3DE documentation. Click here to switch to the latest release, or select a version from the dropdown.

Version:

HTTPRequestor Gem

The HTTPRequestor Gem provides functionality to make asynchronous HTTP/HTTPS requests and return data through a user-provided call back function.

Note:
This feature is currently supported only on Windows, it could be expanded to other platforms.

Getting Started

To use the HttpRequestor Gem, it must be enabled in the project. For more information refer to Adding and Removing Gems in a Project .

The HttpRequestor Gem uses the AWS C++ SDK. To pick up these dependencies, add the following to the project’s CMake file:

BUILD_DEPENDENCIES
        PRIVATE
            ...
            Gem::HttpRequestor
            3rdParty::AWSNativeSDK::Core

C++ API

The HttpRequestor Gem has two sets of APIs: one set for making requests that return json responses and one set for return string (text) responses.

AddRequest, AddRequestWithHeaders, AddRequestWithHeadersAndBody

Use the AddRequest, AddRequestWithHeaders, and AddRequestWithHeadersAndBody APIs to send generic HTTP requests to any website and receive the returned data in JSON format. The methods return the data received in the callback parameter.

Syntax

HttpRequestor::HttpRequestorRequestBus::Broadcast(&HttpRequestor::HttpRequestorRequests::AddRequest, URI, method, callback)
HttpRequestor::HttpRequestorRequestBus::Broadcast(&HttpRequestor::HttpRequestorRequests::AddRequestWithHeaders, URI, method, headers, callback)
HttpRequestor::HttpRequestorRequestBus::Broadcast(&HttpRequestor::HttpRequestorRequests::AddRequestWithHeadersAndBody, URI, method, headers, body, callback)

Each add request method requires the URI, a method and a callback.

Parameters

ParameterTypeDescription
URIAZStd::StringThe fully qualified web address, in the following format: scheme:[//[user:password@]host[:port]][/]path[?query][#fragment]
methodAws::Http::HttpMethodThe method type. The following values are supported: HTTP_GET, HTTP_POST, HTTP_DELETE, HTTP_PUT, HTTP_HEAD, and HTTP_PATCH.
callbacksee belowThis function is called when the HTTP request is completed. The response body and code are present in the callback.
headersHttpRequestor::HeadersThe list of header fields for the HTTP request.
bodyAZStd::StringOptional body to send with the request.

Return: No return value.

JSON Request Callback

This callback is returned for the AddRequest, AddRequestWithHeaders, and AddRequestWithHeadersAndBody methods.

void Callback(const Aws::Utils::Json::JsonValue& json, Aws::Http::HttpResponseCode responseCode);

Parameters

ParameterTypeDescription
jsonAws::Utils::Json::JsonValueThe JSON object. The life span of this object is valid only during the scope of the callback.
responseCodeAws::Http::HttpResponseCodeThe HTTP response code.

Returns

void

AddTextRequest, AddTextRequestWithHeaders, AddTextRequestWithHeadersAndBody

Use the AddTextRequest, AddTextRequestWithHeaders, and AddTextRequestWithHeadersAndBody APIs to send a generic HTTP request to any website and receive the returned data in a text string. The methods return the data received in the callback parameter.

Syntax

HttpRequestor::HttpRequestorRequestBus::Broadcast(&HttpRequestor::HttpRequestorRequests::AddTextRequest, URI, method, callback)
HttpRequestor::HttpRequestorRequestBus::Broadcast(&HttpRequestor::HttpRequestorRequests::AddTextRequestWithHeaders, URI, method, headers, callback)
HttpRequestor::HttpRequestorRequestBus::Broadcast(&HttpRequestor::HttpRequestorRequests::AddTextRequestWithHeadersAndBody, URI, method, headers, body, callback)

Each add text request method requires the URI, a method and a callback.

Parameters

ParameterTypeDescription
URIAZStd::StringThe fully qualified web address, in the following format: scheme:[//[user:password@]host[:port]][/]path[?query][#fragment]
methodAws::Http::HttpMethodThe method type. The following values are supported: HTTP_GET, HTTP_POST, HTTP_DELETE, HTTP_PUT, HTTP_HEAD, and HTTP_PATCH.
callbacksee belowThis function is called when the HTTP request is completed. The response body and code are present in the callback.
headersHttpRequestor::HeadersThe list of header fields for the HTTP request.
bodyAZStd::StringOptional body to send with the request.

Returns

void

Text Request Callback

This callback is returned for the AddTextRequest, AddTextRequestWithHeaders and AddTextRequestWithHeadersAndBody methods.

void Callback(const AZStd::string& response, Aws::Http::HttpResponseCode responseCode);

Parameters

ParameterTypeDescription
responseAZStd::string&The text returned from the server. The life span of this object is valid only during the scope of the callback.
responseCodeAws::Http::HttpResponseCodeThe HTTP response code.

Returns

void

Example

The following example shows calling a HttpBin to get the origin ip address:

#include <aws/core/http/HttpResponse.h>
#include <HttpRequestor/HttpRequestorBus.h>
#include <HttpRequestor/HttpTypes.h>

...

HttpRequestor::HttpRequestorRequestBus::Broadcast(
    &HttpRequestor::HttpRequestorRequests::AddRequest, "https://httpbin.org/ip", Aws::Http::HttpMethod::HTTP_GET,
    [](const Aws::Utils::Json::JsonView& data, Aws::Http::HttpResponseCode responseCode)
    {
        if (responseCode == Aws::Http::HttpResponseCode::OK)
        {
            AZ_Printf("HttpRequest Demo",  "Call succeed with %s %d", data.WriteCompact().c_str(), responseCode);
        }
        else
        {
            AZ_Printf("HttpRequestDemo", "Request Failed!");
        }
    });