VBA WinHTTP自动检测代理设置

时间:2015-03-18 09:26:30

标签: excel-vba httpwebrequest http-proxy winhttp vba

我正在尝试从excel vba中的代理服务器后面向Web服务发送请求。如何让我的代码自动检测代理设置?

Url = "www.example.com"

Set WHTTP = CreateObject("WinHTTP.WinHTTPrequest.5.1")

WHTTP.Open "GET", Url, False

WHTTP.Send

MsgBox WHTTP.Status
MsgBox WHTTP.ResponseText
MsgBox WHTTP.ResponseBody
MsgBox WHTTP.GetAllResponseHeaders

Set WHTTP = Nothing

End Sub

0 个答案:

没有答案