Figured this out while I was working on my Coldfusion Twitter API component. I haven’t been able to find any examples elsewhere, so I thought I would post it here for others.
<cfscript> myHttp = new Http(url="http://www.google.com", method="get"); myHttpResult = myHttp.send().getPrefix(); </cfscript> <cfdump var="#myHttpResult#">