如何在(vb mac office excel 2011)中发送HTTP Post,并读取HTTP响应? 请提供明确的答案,我是vb中的新人。
不是Windows办公室!
提前感谢!
答案 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
如果您还需要更多建议,请告诉我。