Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

features improvements mainly in the authentication #2

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
4275887
update to api version 1
irachex May 6, 2012
9938750
complete oauth
irachex May 6, 2012
fef3a97
refine oauth
irachex May 6, 2012
3dd2d4f
get access token
irachex May 6, 2012
76775c2
get account info
irachex May 7, 2012
56077d4
update README
irachex May 7, 2012
708efe6
update README
irachex May 7, 2012
65e3a74
update README
irachex May 7, 2012
4c7b112
add metadata
irachex May 7, 2012
ba7195e
update jquery version and add put file and change oauth to header
irachex May 7, 2012
0b90374
implement all apis
irachex May 7, 2012
394de9e
remove get a file test
irachex May 7, 2012
690a673
update README
irachex May 7, 2012
ed681ac
get api key & secret from input
irachex May 7, 2012
0cfeba0
update README
irachex May 7, 2012
4979fb5
add example in README
irachex May 7, 2012
f5b10d5
add test api key and secret
irachex May 7, 2012
3c9b4ad
Access-Control-Allow-Origin doesn't work on github, remove example fr…
irachex May 7, 2012
a9221d0
update README
irachex May 7, 2012
1c56a3a
fix README
irachex May 7, 2012
926fa2b
Bugfix: locale not work
irachex May 8, 2012
ca22bc5
improve code quality
irachex May 8, 2012
b9f609b
add getRev & remove sendAuth
irachex May 8, 2012
2abcb92
update README: add getRev
irachex May 8, 2012
bdb7e5b
add callback url
irachex May 8, 2012
a60c1c6
Bugfix: setup and login
irachex May 8, 2012
dbb363c
Bugfix: requestId
irachex May 8, 2012
39778f2
Bugfix: setup
irachex May 8, 2012
eee3478
merge requestToken and accessToken
irachex May 9, 2012
c62900d
update README
irachex May 9, 2012
fad7818
removing dependencies jquery
cleberar Oct 10, 2012
0b39ef4
new api, better structured and supported the automatic login
cleberar Oct 10, 2012
5381d0a
added "maroto" example
cleberar Oct 10, 2012
d31b3ed
Update README.md
cleberar Oct 10, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions LICENSE

This file was deleted.

34 changes: 33 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# dropbox-js

JavaScript library for accessing the Dropbox API over OAuth.
JavaScript library for accessing the Dropbox API over OAuth.

API version: 1.1

## How to Use
see `\example` for example usage.

## Methods
more detail in [https://www.dropbox.com/developers/reference/api](https://www.dropbox.com/developers/reference/api)

#### setup(apiKey, apiSecret, [accessType, locale])
accessType can be "dropbox" or "sandbox"
#### login(token, tokenSecret, [uid])
#### getToken()

#### accountInfo([success, error])
#### metadata(path, [success, error])
#### put(path, body, [success, error])
#### get(path, [success, error])
#### getRev(path, rev, [success, error])
#### search(path, query, [success, error])
#### shares(path, [success, error])
#### media(path, [success, error])
#### delta(cursor, [success, error])
#### revisions(path, [success, error])
#### restore(path, rev, [success, error])
#### copyRef(path, [success, error])
#### thumbnails(path, format, size, [success, error])
#### cp(root, fromPath, toPath, [success, error])
#### mv(root, fromPath, toPath, [success, error])
#### mkdir(path, [success, error])
#### rm(path, [success, error])

Loading