HttpUser

Nome utente per l’autenticazione HTTP.

Sintassi

HTTPObject.HttpUser

Dove:

  • HttpUser è una stringa (lettura/scrittura)
Esempio

Lo script seguirà una richiesta GET e stamperà il codice restituito. Imposta nome utente e password come LanGuard_test:

Function Main

Dim HTTPObj as Object

ip = "www.gfi.com"

port = 80

Set HTTPobj = HTTP.Connect (ip,port)

'impostazione del tipo di richiesta

HTTPobj.GetURL("/")

HTTPobj.HTTPUser = "LanGuard_test"

HTTPobj.HTTPpassword = "LanGuard_test"

'Invio della richiesta GET

HTTPResponse = HTTPobj.SendRequest ()

echo HTTPobj.Body

End Function