HTTPS/Authenticated: Difference between revisions

no edit summary
No edit summary
Line 542:
set data [http::data $token]
http::cleanup $token</lang>
 
 
=={{header|Visual Basic}}==
{{Libheader|Microsoft.WinHttp}}
<lang vb>Dim HttpReq As WinHttp.WinHttpRequest
Set HttpReq = New WinHttp.WinHttpRequest
HttpReq.Open "GET", "https://www.abc.com/xyz/index.html"
HttpReq.SetCredentials "<username>", "<password>", 0&
HttpReq.Send
Debug.Print HttpReq.ResponseText</lang>
 
 
=={{header|zkl}}==