Socket
Socket
Sign inDemoInstall

@ryanforever/dropbox

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ryanforever/dropbox

dropbox API


Version published
Weekly downloads
1
decreased by-80%
Maintainers
1
Weekly downloads
 
Created
Source

dropbox

a simple dropbox API interface


This can only access files/folders in it's own "app folder" in the /Apps directory in dropbox.

ex. if the app is called image-downloader, the folder will appear at /Apps/image-downloader

usage

const Dropbox = require("rf-dropbox")

const dropbox = new Dropbox({
    token: process.env.DROPBOX_TOKEN
})

dropbox.getFiles("files").then(files => {
	console.log(files)
	dropbox.getLink(files[0].path_lower).then(console.log)
})

// upload file from a URL
dropbox.uploadUrl(image, "/folder")

// upload a buffer
dropbox.uploadBuffer(buffer, name)

// fetch an image from a url, and create a buffer ready to upload
dropbox.createBuffer(url)

// dropbox.getAuthorizationLink()
// dropbox.uploadBuffer(buffer, name)
// dropbox.getLink(filepath)
// dropbox.createShareLink(filepath, config = {})
// dropbox.uploadFile(filepath)

Keywords

FAQs

Package last updated on 20 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc