How to Launch Web Browser with URL From In-Game

From Epic Wiki

Overview

Author ( )

Dear Community,

This is how you can launch the OS default web browser with your chosen URL from inside the game via C++!

CPP

FString TheURL = "http://www.google.com/";
FPlatformProcess::LaunchURL( *TheURL, nullptr, nullptr );

Summary

More information can be found in the documentation.

Enjoy!

( )