PostURL
PostUrl viene utilizzato per inizializzare una richiesta POST a un server HTTP. Le richieste POST vengono utilizzate per inviare i dati a un server HTTP.
Sintassi
PostUrl (STRING document, STRING data)
Dove:
Document
è una stringa (esempio:index.html
)Data
è una stringa (esempio:value1=data1
)
Restituisce
Nessun dato restituito.
Esempio
Lo script eseguirà una richiesta POST e stamperà il codice restituito:
Function Main
Dim HTTPObj as Object
ip = "www.gfi.com"
port = 80
Set HTTPobj = HTTP.Connect (ip,port)
'impostazione del tipo di richiesta
HTTPobj.PostURL "/", "prova"
'passaggio tramite proxy con autenticazione automatica
'l’autenticazione deve essere impostata su 1
HTTPobj.Authentication = 1
'Invio richiesta POST
HTTPResponse = HTTPobj.SendRequest ()
echo "Risultato: " + cstr(HTTPResponse)
End Function