ServerXMLHTTP appending to content-type
问题 I am making a server-side HTTP request with a JSON body in VBScript like this: Set oXMLHttp = Server.CreateObject("MSXML2.ServerXMLHTTP") oXMLHttp.open cMethod, cAPIURL, False, cUser, cPassword oXMLHttp.setRequestHeader "Content-Type", "application/json" oXMLHttp.send(cData) cReturn = oXMLHttp.responseText Set oXMLHttp = Nothing The service I'm calling expects the content-type to be application/json , naturally. As you can see, I'm setting the request header above to be as such. The issue is