Error LNK2001: unresolved external symbol FHttpModule

PrivateDependencyModuleName.AddRange(new string[] {“HTTP”}); that is ok

my request is:

FHttpModule *module = new FHttpModule();

Request = module->CreateRequest();

Request->SetVerb("GET");
Request->SetURL("url");
Request->OnProcessRequestComplete().BindUObject(this,&OnData);

as I said, the code was running on the old version, the only change was the construction of FHttpModule class, I used this syntax in old version:

FHttpModule *module = &FHttpModule::Get(); and now method Get dont exist, and module have a construct method
FHttpModule *module = new FHttpModule();

That suggests to me that the class was modified in some way