(VBScript) HTTP Basic Authentication Test
Demonstrates how to do HTTP basic authentication using Chilkat.
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = CreateObject("Chilkat.Http")
http.BasicAuth = 1
http.Login = "foo"
http.Password = "bar"
' Let's say we want to download a file that is protected by HTTP Basic Authenication..
success = http.Download("https://www.example.com/someDir/document.pdf","qa_output/document.pdf")
If (success = 0) Then
outFile.WriteLine(http.LastErrorText)
WScript.Quit
End If
outFile.WriteLine("Success.")
outFile.Close
|