我正在实施Mailchimp API
我的 Coldfusion 项目。我已经执行了将电子邮件添加到列表所需的所有步骤。当我运行代码时,它返回 true 的消息,但是当我查看我的列表时,我在那里没有找到订阅者?下面是我的代码
<cfhttp url="https://us5.api.mailchimp.com/1.3/" method="post" >
<cfhttpparam name="output" value="json" type="url">
<cfhttpparam name="method" value="listSubscribe" type="URL">
<cfhttpparam name="apikey" value="3xxxxxxxx1e7a-us5" type="url">
<cfhttpparam name="id" value="ccxxxx2b" type="url">
<cfhttpparam name="email_address" value="test@hotmail.com" type="url">
<cfhttpparam name="merge_vars[fname]" value="test" type="url">
</cfhttp>
<cfset result = JSStringFormat(cfhttp.filecontent)>
<cfdump var="#result#">
我的代码有什么问题?