Hi,
I enter a URL in the browser's address bar https://MySait/xx.php?DNSID=wCx and go to this page. In my program, I make an http request to this page
ohttp: Open( "GET", "https://MySait/xx.php?DNSID=wCx", 1)
ohttp:Send (NIL)
.......
and I want to get the HTML text of this page
buf:=ohttp:responseText
However, as a result, I get the HTML text of the main page of the MySait site. It turns out that the HTTP request is not triggered if the URL contains xx.PHP ?
Problems with the Http request
Re: Problems with the Http request
And if you use as url : https://mysait ( only ) ?
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: Problems with the Http request
"MySite" is, for example, XX.ORG
Re: Problems with the Http request
I think that the problem with the request is authorization on the site.
ohttp: Open( "GET", URL, 1, login, password)
May need to change the encoding of the login and password ? Or use POST instead of GET ?
ohttp: Open( "GET", URL, 1, login, password)
May need to change the encoding of the login and password ? Or use POST instead of GET ?