我使用以下代码成功连接到版本 1:
<cfhttp method="post"
url="http://do.convertapi.com/Word2Pdf"
result="convertAttempt"
path="#arguments.path#"
file="#arguments.fileToDestination#"
>
<cfhttpparam type="formfield" name="ApiKey" value="xxxxxxx" >
<cfhttpparam type="file" file="#arguments.path#/#arguments.fileToConvert#" name="File" >
</cfhttp>
下面是我尝试用于版本 2的代码。它将文件写入正确的文件夹,但它不是可读的 PDF。我认为它与base64有关,但不确定。无论如何,希望那里有另一个 ColdFusion 用户来帮助我。然后,我们希望在 convertAPI 站点上获得代码示例以帮助其他人。
<cfhttp method="post"
url="http://v2.convertapi.com/docx/to/pdf?Secret=mysecret"
result="convertAttempt"
path="#arguments.path#"
file="#arguments.fileToDestination#"
>
<cfhttpparam type="file" file="#arguments.path##arguments.fileToConvert#" name="File" >
</cfhttp>