Hi
I'm a DB beginner and have to use VBA from Excel
I'm using, in between others:
Set xmlhttp = CreateObject("WinHttp.WinHttpRequest.5.1")
myURL = "https://content.dropboxapi.com/2/files/download"
xmlhttp.SetRequestHeader "Dropbox-API-Arg", argumentString
xmlhttp.send ""
and it all seems to go well and with
xmlhttp.ResponseText
I get a bunch of unreadable text which I believe is the file content
But I don't get the file
what should be the last statament to actually download it to my PC?
thank you
Riccardo