通过 VBA 发送 Rest 请求时出现运行时错误

时间:2021-06-22 12:50:56

标签: vba rest

我通过 Rest requestHTTP server 发送到 VBA script,如下所示:

    HTTP.Open "PUT", rUrl, True
    HTTP.SetRequestHeader "Host", rHost
    HTTP.SetRequestHeader "Authorization", "Bearer " + rToken
    HTTP.SetRequestHeader "Content-Length", Len(rBody)
    HTTP.send rBody

在 Windows 10(64 位)上一切正常,但在 Windows 7(64 位)上出现运行时错误,位于 HTTP.send rBody 行:

Error image

您知道什么可能导致此错误吗?

0 个答案:

没有答案