I have a code in VBA Excel which make HTTP requests by using MSXML2.ServerXMLHTTP.6.0
It looks like
authHeader = "Basic " & Base64Encode("login:password")
Set XMLHTTP = CreateObject("MSXML2.ServerXMLHTTP.6.0")
XMLHTTP.setTimeOuts 30000, 30000, 30000, 600000
XMLHTTP.SetRequestHeader "Authorization", authHeader
If strQuery <> "" Then
strQuery = "query=" + Replace(strQuery, " ", "%20")
End If
'On Error Resume Next
XMLHTTP.Send (strQuery)
SendHTTPRequest = Err.Number
strQueryResult = XMLHTTP.ResponseText
queryStatus = XMLHTTP.Status
Set XMLHTTP = Nothing
After XMLHTTP.Send (strQuery)
BAD REQUEST returns
but Fiddler do not show this request
How can I see it through Fiddler?