↧
From: | luk |
To: | Rick Strahl |
First off that certificate is invalid, so you really shouldn't call that URL. You need to get that site to fix the certificate which is expired. So the actual transaction is not actually secure.
If you still want this to work - and I highly discourage you from doing this - you can use the following:
DO wwHttp loHttp = CREATEOBJECT("wwHttp") loHttp.lIgnoreCertificateWarnings = .T. lcHtml = loHttp.HttpGet("https://betting.macaudog.com/include/leftdown1.asp") ? loHttp.cErrorMsg ShowHtml(lcHtml)
+++ Rick ---
how use "httpget" to download "https://betting.macaudog.com/include/leftdown1.asp" ?
as: lcHTML=oHTTP.HTTPGet("https://betting.macaudog.com/include/leftdown1.asp") --> it cannot dl...
I use wget.exe , it work OK:
wget.exe https://betting.macaudog.com/include/leftdown1.asp --no-check-certificate
thank you very much!