i had this code that retrieved data from docuwiki :). but they started using tls1.3 and my code doesn't work anymore. is there anything i can do? i have win 7 and i'm using excel 2007 the error i'm getting when running the vba script is "an error occurred in the secure channel support"
Sub test1()
Dim Http2 As New WinHttpRequest
'open the docuwiki url
Http2.Open "GET", "https://9gag.com/", False
Http2.setRequestHeader "User-Agent", "Mozilla/5.0 (Windows NT 6.1; rv:25.0) Gecko/20100101 Firefox/25.0"
'send request
Http2.send
'get response
a = lcase(Http2.responseText)
MsgBox a
End Sub
i apologise if this is a stupid or incomplete question.