Recommended way to upload images in meteor to dropbox

I want to config dropbox in meteor for upload image , How can i do , please help me?

I haven’t done drop box, but I do image upload to S3, basically I just use file reader send the info to the server with a Meteor.call and from there you perform the HTTP to post the file. It looks like they also have an npm sdk but it doesnt look like the docs are very good.

This is a decent how-to
https://blogs.dropbox.com/developers/2016/03/how-formio-uses-dropbox-as-a-file-backend-for-javascript-apps/

You can check out the http docs here https://www.dropbox.com/developers/documentation/http/documentation#files-upload

info on fileReader:
https://www.javascripture.com/FileReader

I do like amazon s3 for my image storage though, load times seems lightning fast, though initially setting everything up is quite a pain.

Yes, Thank you for your recommend