身份验证

启用或禁用 HTTP 和代理身份验证。 如果已设置 ProxyUser、ProxyPassword、HttpUser 和 HttpPassword,则身份验证将隐式设置为 TRUE。

语法

HTTPObject.Authentication

其中:

  • Authentication 是布尔型(读/写)
示例

该脚本将执行 GET 请求,并打印返回代码:

函数 Main

Dim HTTPObj as Object

ip = "www.gfi.com"

port = 80

Set HTTPobj = HTTP.Connect (ip,port)

'设置请求类型

HTTPobj.GetURL("/")

'使用自动身份验证通过代理

'身份验证必须设置为 1

HTTPobj.Authentication = 1

'发送 GET 请求

HTTPResponse = HTTPobj.SendRequest ()

echo HTTPResponse

End 函数