UMoviePipelineExecutorBase::SendHTTPRequest

Sends a asynchronous HTTP request.

Windows
MacOS
Linux

References

Module

MovieRenderPipelineCore

Header

/Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/MoviePipelineExecutor.h

Include

#include "MoviePipelineExecutor.h"

Source

/Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Private/MoviePipelineExecutor.cpp

Syntax

[UFUNCTION](Programming/UnrealArchitecture/Reference/Functions)(BlueprintCallable, Category="Movie Render Pipeline")
int32 SendHTTPRequest
(
    const FString & InURL,
    const FString & InVerb,
    const FString & InMessage,
    const TMap< FString, FString > & InHeaders
)

Remarks

Sends a asynchronous HTTP request. Responses will be returned in the the OnHTTPResponseRecieved event.

Returns

Returns an index for the request. This index will be provided in the OnHTTPResponseRecieved event so you can make multiple HTTP requests at once and tell them apart when you recieve them, even if they come out of order.

Parameters

Parameter

Description

InURL

The URL to send the request to.

InVerb

The HTTP verb for the request. GET, PUT, POST, etc.

InMessage

The content of the request.

InHeaders

Headers that should be set on the request.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss