ColdFusion CFHTTP GET strips cookie

I'm running into issues trying to pass a cookie in my CFHTTP GET Statement.

Has anyone else experienced this? Pointers would be appreciated. BTW - I am using the x-http-method-override , because I saw this on a few other sites that were discussing this topic.

<cfhttp url="#this.apiServer#/api/v#this.version#/user.json" 
        method="POST" result="jorn">            
    <cfhttpparam type="COOKIE" name="ms_user" value="#arguments.patAppSession#" />
    <cfhttpparam type="header" name="Content-Type" value="application/json" />
    <cfhttpparam type="header" name="x-http-method-override" value="GET" />
    <cfhttpparam type="body" value='#variables.dataFields#' />
</cfhttp>
<cfdump var = "#jorn#">
链接地址: http://www.djcxy.com/p/5282.html

上一篇: ColdFusion CFHTTP问题

下一篇: ColdFusion CFHTTP GET剥离cookie