You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.

Forum Discussion

pouic's avatar
pouic
Helpful | Level 6
7 years ago

Api v2 for filesGetThumbnail gives t.buffer not a function error

Hi, when i try to get thumbnail for any file inside my folder i have the same error for different types os files (svg, png, ...)     import { Dropbox } from 'dropbox'; let dbx = new Dropbox...
  • pouic's avatar
    pouic
    7 years ago

    If import the DropboxSDK library like script import on my html works fine ;)

     

    my solution: 

     

    index.html ( add dropbox-sdk manually)

      <script src="assets/js/dropbox-sdk.js"></script>

    On page where can use dropbox (index.ts)

    declare var Dropbox: any;
    
    
      var dbx = new Dropbox.Dropbox({ accessToken: 'MY-KEY' });
       
        dbx.filesListFolder({path: '/my-folder-name'})
          .then(function(response) {
    
           dbx.filesGetThumbnail({ path: response.entries[0].path_display, format: 'png', size: 'w128h128' })
            .then(function(response) {
              var img = document.createElement('img');
              img.src=window.URL.createObjectURL(response.fileBlob);
              document.getElementById('results').appendChild(img);
    
            })
            .catch(function(error) {
              console.log(error);
            });
          
        });
      }

     

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,877 PostsLatest Activity: 36 minutes ago
325 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!