How to CFDUMP the "Body" of an HTTP POST

1.6k Views Asked by At

Here's my question of the day. Let's say I have this on one page:

start.cfm

<cfset body = { "stuff": [ 1,2,3,4,5 ] }>

<cfhttp url="end.cfm" method="post" result="httpResp" timeout="60">
    <cfhttpparam type="header" name="Content-Type" value="application/json">
    <cfhttpparam type="body" value="#serializeJSON(body)#">
</cfhttp>

I can't figure out what end.cfm needs to have to output what's in the body. I've tried to cfdump everything from variables to form to cgi but I can't get to it. What am I missing?

2

There are 2 best solutions below

3
On BEST ANSWER

Such a dumb question that I was able to answer it with some additional Googling.

 <cfdump var="#GetHttpRequestData()#">
1
On

An alternative to the "start and end page to see what's in the request" solution is to use Hyper:

https://www.forgebox.io/view/hyper

It wraps cfhttp but does so in a manner that lets you re-use elements of your request that are shared with other calls to the same endpoints. It's especially useful when paired with Wirebox and Coldbox but these are not necessary.