I'm using Msxml2.ServerXMLHTTP.6.0 to POST/GET data from Twitters API. Everything is working fine apart from one API function.
I need to see what I'm sending to api.twitter.com so I can fix it.
The script was written by someone else and is very long and complicated, but this is the send function which fires the request off to twitter:
Dim objXMLHTTP : Set objXMLHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP.6.0")
objXMLHTTP.setTimeouts OAUTH_TIMEOUT_RESOLVE, OAUTH_TIMEOUT_CONNECT, OAUTH_TIMEOUT_SEND, OAUTH_TIMEOUT_RECEIVE
objXMLHTTP.Open m_strRequestMethod, strRequestURL, False
objXMLHTTP.SetRequestHeader "Content-Type","application/x-www-form-urlencoded"
objXMLHTTP.SetRequestHeader "User-Agent", m_strUserAgent
objXMLHTTP.SetRequestHeader "Host", m_strHost
objXMLHTTP.Send()
Set objXMLHTTP = Nothing
Is there anyway I can see what is being sent in its RAW format?
Thanks