Dropbox

The @sme-uploader/dropbox plugin lets users import files from their Dropbox account.

A Companion instance is required for the Dropbox plugin to work. Companion handles authentication with Dropbox, downloads the files, and uploads them to the destination. This saves the user bandwidth, especially helpful if they are on a mobile connection.

const Dropbox = require('@sme-uploader/dropbox');

uploader.use(Dropbox, {
  // Options
});

Try it live

Installation

This plugin is published as the @sme-uploader/dropbox package.

Install from NPM:

npm install @sme-uploader/dropbox

In the CDN package, it is available on the SmeUploader global object:

const Dropbox = SmeUploader.Dropbox;

Setting Up

To use the Dropbox provider, you need to configure the Dropbox keys that Companion should use. With the standalone Companion server, specify environment variables:

export COMPANION_DROPBOX_KEY="Dropbox API key"
export COMPANION_DROPBOX_SECRET="Dropbox API secret"

When using the Companion Node.js API, configure these options:

companion.app({
  providerOptions: {
    dropbox: {
      key: 'Dropbox API key',
      secret: 'Dropbox API secret'
    }
  }
});

You can create a Dropbox App on the Dropbox Developers site.

Things to note:

  • Choose the “Dropbox API”, not the business variant.
  • Typically you’ll want “Full Dropbox” access, unless you are very certain that you need the other one.

You’ll be redirected to the app page. This page lists the app key and app secret, which you should use to configure Companion as shown above.

The app page has a “Redirect URIs” field. Here, add:

https://$YOUR_COMPANION_HOST_NAME/dropbox/redirect

You can only use the integration with your own account initially—make sure to apply for production status on the app page before you publish your app, or your users will not be able to sign in!

CSS

Dashboard plugin is recommended as a container to all Provider plugins, including Dropbox. If you are using Dashboard, it comes with all the nessesary styles for Dropbox as well.

⚠️ If you are feeling adventurous, and want to use Dropbox plugin separately, without Dashboard, make sure to include @sme-uploader/provider-views/dist/style.css (or style.min.css) CSS file. This is experimental, not officially supported and not recommended.

Options

The @sme-uploader/dropbox plugin has the following configurable options:

uploader.use(Dropbox, {
  target: Dashboard,
  companionUrl: 'https://companion.uploader.io/',
})

id: 'Dropbox'

A unique identifier for this plugin. It defaults to 'Dropbox'.

title: 'Dropbox'

Title / name shown in the UI, such as Dashboard tabs. It defaults to 'Dropbox'.

target: null

DOM element, CSS selector, or plugin to mount the Dropbox provider into. This should normally be the @sme-uploader/dashboard plugin.

companionUrl: null

URL to a Companion instance.

companionHeaders: {}

Custom headers that should be sent along to Companion on every request.

companionAllowedHosts: companionUrl

The valid and authorised URL(s) from which OAuth responses should be accepted.

This value can be a String, a Regex pattern, or an Array of both.

This is useful when you have your Companion running on multiple hosts. Otherwise, the default value should do just fine.

locale: {}

Localize text that is shown to the user.

The default English strings are:

strings: {
  // TODO
}