Unresolved external in FHTTPModule

Looks like you aren’t including the http module into your project. I’m not sure what the exact dependency is, but check that you have this somewhere. In your MyGame.build.cs file.

	PublicDependencyModuleNames.AddRange(
		new string[] {
			...
			"HTTP",
                        ...

You could touch one of the http cpp files (add a compiler error) and see if it catches it. I suspect it won’t.

1 Like