idle wrote: Sun Apr 14, 2024 5:31 am
maybe it's a TLS version issue, I had a similar issue with httpRequest but with the flag #PB_HTTP_WeakSSL it worked.
Sadly, this didn't do much... Also completed in 177ms so I doubt it fetched a page.
Plus if it were a tls issue, wouldn't others have this problem?
Other https sites work...
[01:42:45] StatusCode: 0
[01:42:45] Response:
Code: Select all
#url$ = "https://roosales.com"
;#url$ = "https://google.com"
ElapsedMilliseconds()
Debug #url$
Debug " "+ReceiveHTTPMemory(#url$) + " "+GetLastError_()+" "+Str(ElapsedMilliseconds())
Debug " "+ReceiveHTTPFile(#url$,"c:\temp\page.txt") + " " + GetLastError_()+" "+Str(ElapsedMilliseconds())
For roosales -takes milliseconds, not really even trying...
for google, it does take longer
So my guess is that it's not even doing any network i/o.
I don't have a sniffer installed,but I will and see if I see any traffic...