RosettaCodeData/Task/HTTPS/LiveCode/https-2.livecode
2016-12-05 23:44:36 +01:00

10 lines
349 B
Text

on myUrlDownloadFinished
get URL "https://sourceforge.net/" -- this will now fetch a locally cached copy
put it
end myUrlDownloadFinished
command getWebResource
libURLFollowHttpRedirects true
libURLSetSSLVerification true --check cert
load URL "https://sourceforge.net/" with message "myUrlDownloadFinished"
end getWebResource