2

以下のコードを使用して、バージョン 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>
4

2 に答える 2