ドロップボックス フォルダーから Netlify の Jekyll ビルドに画像を取得しようとしていますが、次のコードでは画像を読み取ることができません。内容の変換を間違っていると思います。
dbx
.filesListFolder({ path: "/images" })
.then(response => {
response.entries.forEach(entry => {
const { name, path_lower } = entry;
if (entry[".tag"] === "file") {
dbx
.filesDownload({ path: path_lower })
.then(data => {
const filename = path.resolve(IMAGES_DIR, name);
const filecontents = data.fileBinary.toString("base64");
fs.outputFile(filename, filecontents).catch(error => {
if (error) {
return console.log("Error: file failed to write", name, error);
}
});
})
.catch(error => {
console.log("Error: file failed to download", name, error);
});
}
});
})
どんな助けでも大歓迎です。ありがとう。