return ZennoPoster.HTTP.Request(
method: ZennoLab.InterfacesLibrary.Enums.Http.HttpMethod.GET,
url: "https://httpbin.org/anything",
content: string.Empty,
contentPostingType: "application/x-www-form-urlencoded",
proxy: project.GetProxy(),
Encoding: "UTF-8",
respType: ZennoLab.InterfacesLibrary.Enums.Http.ResponceType.BodyOnly,
Timeout: 30000,
Cookies: string.Empty,
UserAgent: project.Profile.UserAgent,
UseRedirect: true,
MaxRedirectCount: 5,
AdditionalHeaders: new string[] {
"Accept: " + project.Profile.HTTPAccept,
"Accept-Encoding: " + project.Profile.AcceptEncoding,
"Accept-Language: " + project.Profile.AcceptLanguage,
},
DownloadPath: project.Directory,
UseOriginalUrl: false,
throwExceptionOnError: true,
cookieContainer: project.Profile.CookieContainer,
removeDefaultHeaders: true);