Is this how to send json data?
I'm trying to send JSON data via CFHTTP. Is this all I need or do I need to do anything else? I want make sure I'm not missing anything.
<cfhttp url="https://app.kb.com/api/head/comment.json" method="post" timeout="15" throwonerror="true" >
<cfhttpparam type="url" name="_authbykey" value="56ec1f0123131c78636142d6">
<cfhttpparam type="url" name="project_id" value="55c4ffd123131c527e294fe6">
<cfhttpparam type="url" name="article_id" value="#artID#">
<cfhttpparam type="url" name="content" value="#form.message#" />
<cfhttpparam type="url" name="public_name" value="#form.name#" />
<cfhttpparam type="url" name="public_email" value="#form.mailfrom#" />
</cfhttp>
Thank you!
