将图像从 Dropbox 显示到网页

Display image from Dropbox to a webpage

因此,我正在尝试在我的 Web 应用程序上显示图像。我从 Dropbox 文件夹中获取这张图片。我想得到一个 URL,我可以使用 src 属性在 HTML 中显示图像。

我写过这段代码:

function downloadFile() {
  var Dropbox = require('dropbox').Dropbox;
  var ACCESS_TOKEN = "XXXXXXXXXXX"; // Here the access token key
  var dbx = new Dropbox({ accessToken: ACCESS_TOKEN });

  dbx.filesDownload({ path: '/desiredImg.jpg' })
    .then(function(response) {
      var results = document.getElementById('results');
      var img = document.createElement('img');
      img.src = window.URL.createObjectURL(response.fileBlob);
      console.log(response);
      console.log(response.fileBlob);
    })
    .catch(function(error) {
      console.error(error);
    });
  return false;
}

结果

错误

谁能帮我解决这个问题?

错误来自 img.src = window.URL.createObjectURL(response.fileBlob);
它必须是:img.src=window.URL.createObjectURL(response.result.fileBlob);