このウェブサイトhttps://ebookglue.com/docsの API を使用して、.html ファイルを .epub ファイルに変換したい コマンド ライン curl に例がありますが、PHP curl を使用したいのですが、変換方法がわかりません。これはPHPカールに正しく
ここにコマンドラインカールがあります
curl -o converted.epub \
-F "token=your-api-key" \
-F "file=@index.html" \
https://ebookglue.com/convert
dat.epub
ここで私がこれまでに得たものは、動作しておらず、空のファイルを返しています
$token = "token";
$tmpfile = $_FILES['file']['tmp_name'];
$filename = basename($_FILES['file']['name']);
$data = array(
'token' => $token,
'file' => '@'.$tmpfile.';filename='.$filename,
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://ebookglue.com/convert");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HEADER, 0);
$out = curl_exec($ch);
curl_close($ch);
$fp = fopen('data.epub', 'w');
fwrite($fp, $out);
fclose($fp);