web services - ColdFusion CFHTTP GET strips cookie -
i'm running issues trying pass cookie in cfhttp statement.
has else experienced this? pointers appreciated. btw - using x-http-method-override
, because saw on few other sites discussing 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#">
Comments
Post a Comment