Jump to content

301 Response Text from winhttprequest


DazSpaz
 Share

Recommended Posts

Dear people,

How do circumnavigate a 301 response? Up to now a 200 was returned and everyone was happy.

; Creating the object
   $oHTTP = ObjCreate("winhttp.winhttprequest.5.1")

   $oHTTP.Open("POST", $url, False)
   ;$oHTTP.Open("GET", $address, False)
   ;$oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")

; Performing the Request
   $oHTTP.Send()

; Download the body response if any, and get the server status response code.
   $HTML = $oHTTP.ResponseText
   $oStatusCode = $oHTTP.Status
   log_this("send request response status=" & $oStatusCode)

Now my $HTML string is just:

<html>

<head><title>301 Moved Permanently</title></head>

<body bgcolor="white">

<center><h1>301 Moved Permanently</h1></center>

<hr><center>nginx</center>

</body>

</html>

which is rude. Answers on a postcard please.

 

 

 

 

 

Link to comment
Share on other sites

22 hours ago, DazSpaz said:

Dear people,

How do circumnavigate a 301 response? Up to now a 200 was returned and everyone was happy.

; Creating the object
   $oHTTP = ObjCreate("winhttp.winhttprequest.5.1")

   $oHTTP.Open("POST", $url, False)
   ;$oHTTP.Open("GET", $address, False)
   ;$oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")

; Performing the Request
   $oHTTP.Send()

; Download the body response if any, and get the server status response code.
   $HTML = $oHTTP.ResponseText
   $oStatusCode = $oHTTP.Status
   log_this("send request response status=" & $oStatusCode)

Now my $HTML string is just:

<html>

<head><title>301 Moved Permanently</title></head>

<body bgcolor="white">

<center><h1>301 Moved Permanently</h1></center>

<hr><center>nginx</center>

</body>

</html>

which is rude. Answers on a postcard please.

 

 

 

 

 

Redirection policy can be set per http object. Default should be to follow redirects but maybe you or someone with enough privileges changed it on system level. Anyway, try it like this:

Const $WinHttpRequestOption_EnableRedirects = 6

$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")

; Check default WinHttpRequestOption redirection setting
$vDefaultSetting = $oHTTP.Option($WinHttpRequestOption_EnableRedirects)
ConsoleWrite("Default setting is: " & $vDefaultSetting & @CRLF)

; Enable redirects
$oHTTP.Option($WinHttpRequestOption_EnableRedirects) = True

; Check current setting
$vCurrentSetting = $oHTTP.Option($WinHttpRequestOption_EnableRedirects)
ConsoleWrite("Current setting is: " & $vCurrentSetting & @CRLF)

$oHTTP.Open("POST", $url, False)
;...

 

♡♡♡

.

eMyvnE

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...