stacktic
/
dropbox
Archived
1
0
Fork 0
This repository has been archived on 2021-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
dropbox/README.md

84 lines
2.4 KiB
Markdown
Raw Permalink Normal View History

2014-02-19 23:12:56 +01:00
dropbox
=======
Go client library for the Dropbox core and Datastore API with support for uploading and downloading encrypted files.
Support of the Datastore API should be considered as a beta version.
2014-02-19 23:16:26 +01:00
2017-05-22 21:34:49 +02:00
*NB* this module is for the v1 API which is due to be turned off on 28
June 2017. For the v2 API [dropbox have made a a new go
SDK themselves](https://github.com/dropbox/dropbox-sdk-go-unofficial/).
2014-02-19 23:16:26 +01:00
Prerequisite
------------
2014-02-20 18:57:34 +01:00
To use this library, you must have a valid client ID (app key) and client secret (app secret) provided by Dropbox.<br>
2014-02-19 23:16:26 +01:00
To register a new client application, please visit https://www.dropbox.com/developers/apps/create
2014-02-20 18:57:34 +01:00
Installation
------------
2014-07-29 22:00:07 +02:00
This library depends on the oauth2 package, it can be installed with the go get command:
2014-02-20 18:57:34 +01:00
2014-12-06 16:13:45 +01:00
$ go get golang.org/x/oauth2
2014-02-20 18:57:34 +01:00
This package can be installed with the go get command:
$ go get github.com/stacktic/dropbox
2014-02-19 23:16:26 +01:00
Examples
--------
This simple 4-step example will show you how to create a folder:
package main
import (
"dropbox"
"fmt"
)
func main() {
var err error
var db *dropbox.Dropbox
var clientid, clientsecret string
var token string
clientid = "xxxxx"
clientsecret = "yyyyy"
token = "zzzz"
// 1. Create a new dropbox object.
db = dropbox.NewDropbox()
// 2. Provide your clientid and clientsecret (see prerequisite).
db.SetAppInfo(clientid, clientsecret)
// 3. Provide the user token.
db.SetAccessToken(token)
// 4. Send your commands.
// In this example, you will create a new folder named "demo".
folder := "demo"
if _, err = db.CreateFolder(folder); err != nil {
fmt.Printf("Error creating folder %s: %s\n", folder, err)
} else {
fmt.Printf("Folder %s successfully created\n", folder)
}
}
If you do not know the user token, you can replace step 3 by a call to the Auth method:
// This method will ask the user to visit an URL and paste the generated code.
if err = db.Auth(); err != nil {
fmt.Println(err)
return
}
// You can now retrieve the token if you want.
token = db.AccessToken()
2014-02-20 18:57:34 +01:00
If you want a more complete example, please check the following project: https://github.com/stacktic/dbox.
Documentation
-------------
API documentation can be found here: http://godoc.org/github.com/stacktic/dropbox.