Hello y'all,
At my workplace, I've been tasked to make some software with AutoIT and I seem to be stuck with this:
$orionURL = 'http://'&$ipAddress&':5001/'
$jsonData = '[{ "request": { "TokenName": "bitCMDGrantEnter", "LaneNumber":"'&$laneNumber&'", "Value": "true"}}]'
$oHTTP = ObjCreate("MSXML2.XMLHTTP")
$oHTTP.Open("POST", $orionURL, False)
$oHTTP.SetRequestHeader("Content-Type", "application/json")
; ----ERRROR RIGHT HERE---------
$oHTTP.Send($jsonData)
The console logs show the URL, IP address, Lane number and everything else to be perfect.
I've sent the same requests on postman and it works wonders, even when spammed on the same computer, everything in the JSON and URL to be the same and it works like butter.
but AutoIT seems to just struggle with this request, its a 50% flip of a coin for it to work well or bring up this error everytime:
(833) : ==> The requested action with this object has failed.:
$oHTTP.Send($jsonData)
$oHTTP^ ERROR
I've also tried using "WinHttp.WinHttpRequest.5.1" for my HTTP request but the difference seems null.
Am I blind? I've tried all types of error catching, COM error catching and nothing...
THANK YOU SO MUCH FOR YOUR TIME!