Skip to content

CalebMorris/dropbox-application-only

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dropbox-Application-Only

A Dropbox API wrapper through OAuth2 and the single app per account access.

This methodology doesn't require user acknowledgement beyond intial config from generated token.

How to generate a OAuth2 Token

Install

For Node

npm install

Example

var client = require('dropbox-application-only').authenticate(config.token);

client.metadata()
  .then(function(response) {
    console.log('response', response);
  })
  .catch(function(failure) {
    console.error('status', failure.status);
    console.error('error', failure.error);
  });

Supported API

Note : This project is in early revisions and is subject to change.

About

Dropbox API wrapper through OAuth2. Application only

Resources

Stars

Watchers

Forks

Packages

No packages published