When you're maintaining scoreboards or other such things that require regular HTTP request access to servers, you can use the HTTP API to perform such web request tasks.
HTTP API – downloading webpages using web requests
Getting ready
Have a server that you're allowed to request data via HTTP from. You can use a public server of any type to try out HTTP requests, if you'd like.
How to do it...
- Link to the HTTP API in your ProjectName.Build.cs file:
using UnrealBuildTool;
public class Chapter_11 : ModuleRules
{
public Chapter_11(ReadOnlyTargetRules...