A convenient tool binding to the Dropbox APIv2,
Now it can operate user_check
,upload(file size below 150 MB)
, move
and download
.
It will handle error messages from Dropbox api.
And there is a async api can be activate by feature non-blocking
.
For use, you need a Dropbox access token
sh
cargo add rust-dropbox
rust
use rust_dropbox::*;
use std::env;
let token = env::var("DROPBOX_TOKEN").unwrap();
let client = client::DBXClient::new(&token);
let res = client.check_user("ping");
assert!(res.is_ok())
```rust use rust_dropbox::* use std::env; use std::{ fs::File, io::Read, };
let token = env::var("DROPBOXTOKEN").unwrap();
let mut file = File::open("./profile.jpg").unwrap();
let mut buf: Vec
```rust use rust_dropbox::* use std::env;
let token = env::var("DROPBOXTOKEN").unwrap(); let client = client::DBXClient::new(&token); let moveoption = MoveOption::new() .allowownershiptransfer() .allowsharedfolder() .allowautorename(); let res = client.movefile("/test/profile.jpg", "/profile.jpg", moveoption); assert!(res.is_ok()) ```
```rust use rust_dropbox::* use std::env; use std::{ fs::File, io::Write, };
let token = env::var("DROPBOXTOKEN").unwrap(); let client = client::DBXClient::new(&token); let res = client.download("/profile.jpg"); let bytes = res.unwrap(); let mut file = File::create("newprofile.jpg").unwrap(); file.write_all(&bytes).unwrap(); ```
toml
rust-dropbox={version=*,default-features=false,features=["non-blocking"]}