如何发送HTTP Post(vb mac excel 2011),并读取HTTP响应?

时间:2012-10-11 13:35:27

标签: vb.net excel http http-post

  

可能重复:
  Sending http requests with VBA from Word

如何在(vb mac office excel 2011)中发送HTTP Post,并读取HTTP响应? 请提供明确的答案,我是vb中的新人。

不是Windows办公室!

提前感谢!

1 个答案:

答案 0 :(得分:0)

这是link to a similar question answered in 2010。此处粘贴的代码来自该链接。

Sub http()
Dim MyRequest As Object

    Set MyRequest = CreateObject("WinHttp.WinHttpRequest.5.1")
    MyRequest.Open "GET", "http://www.google.com"

    ' Send Request.
    MyRequest.Send

    'And we get this response
    MsgBox MyRequest.ResponseText

End Sub

如果您还需要更多建议,请告诉我。