结合使用api和xml时,URL的哪种格式正确

时间:2019-03-25 20:14:59

标签: excel vba api

当我尝试使用vba(excel)访问common / example api url时,没有问题。 所需的URL如下:"hppts://user:password@www.site.com/events/" 当我在Web浏览器中复制URL时,没有问题。 但是在使用VBA时返回错误:“打开对象IServerXMLHTTPRequest2的方法失败”

代码:

Dim http As Object, str As Variant
Set http = CreateObject("MSXML2.XMLHTTP")

With http
    .Open "GET", "https://user:password@www.site.com/events/", False
    .send
    str = .responseText
End With

x = UBound(str)

0 个答案:

没有答案