I'm trying to push data to a web app that has an API. I'm not understanding the whole HTTP data stream concept and can't find a good guide online.
Does anyone have an example of how they post data with a few variables?
I have the code below that does a good "GET" and that's half the battle, but still having problems with the POST.
Does anyone have an example of how they post data with a few variables?
I have the code below that does a good "GET" and that's half the battle, but still having problems with the POST.
Code:
Set objhttp = CreateObject("MSXML2.ServerXMLHTTP")
URL = my url
objhttp.Open "GET", URL, False
objhttp.setRequestHeader "ApiKey", mykey
objhttp.send