Body

Contiene il corpo della risposta.

Sintassi

HTTPObject.Body

  • Body è una stringa (lettura)
Esempio

Lo script eseguirà una richiesta GET e stamperà il corpo:

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("/")

'passaggio tramite proxy con autenticazione automatica

'l’autenticazione deve essere impostata su 1

HTTPobj.Authentication = 1

'Invio della richiesta GET

HTTPResponse = HTTPobj.SendRequest ()

echo HTTPobj.Body

End Function