Features · Installation · Quick Start · Running the CLI Examples · Documentation · Contributing · Support · License
- Login/register + token verification, with permissions in the response.
- Full album management: list, create, edit metadata, toggle public/download, and rotate share links.
- Album file listing with built‑in pagination (single page or all pages).
- Uploads with automatic upload‑node discovery, streaming small files and chunked uploads for large files, plus per‑file progress callbacks.
- Typed models and explicit error types (auth failures, album‑not‑found, album‑exists, missing fields).
- Optional low‑level get for endpoints not covered by higher‑level methods.
[dependencies]
cyberdrop-client = "0.4.5"use cyberdrop_client::CyberdropClient;
use std::path::Path;
#[tokio::main]
async fn main() -> Result<(), cyberdrop_client::CyberdropError> {
let client = CyberdropClient::builder().build()?;
let token = client.login("username", "password").await?;
let authed = client.with_auth_token(token.into_string());
let albums = authed.list_albums().await?;
println!("albums: {}", albums.albums.len());
let album_id = authed
.create_album("my uploads", Some("created by cyberdrop-client"))
.await?;
let uploaded = authed
.upload_file(Path::new("path/to/file.jpg"), Some(album_id))
.await?;
println!("uploaded {} -> {}", uploaded.name, uploaded.url);
Ok(())
}let client = CyberdropClient::builder()
.base_url("https://dash.bunkr.cr")?
.auth_token("your_auth_token_here")
.timeout(std::time::Duration::from_secs(500))
.build()?;Examples live in examples/ and can take args or environment variables.
Environment variables used by most examples:
CYBERDROP_USERNAMECYBERDROP_PASSWORD
Run:
cargo run --example register -- <username> <password>
cargo run --example login -- <username> <password>
cargo run --example list_albums -- <username> <password>
cargo run --example create_album -- <username> <password> "<name>" ["<description>"]
cargo run --example edit_album -- <username> <password> <album_id> ["<new_name>"] ["<new_identifier>"]
cargo run --example list_album_files -- <username> <password> <album_id> [page]
cargo run --example request_new_album_link -- <username> <password> <album_id>
cargo run --example upload_file -- <username> <password> <path> [album_id]For detailed API documentation, visit docs.rs/cyberdrop-client.
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
If this crate saves you time or helps your work, support is appreciated:
This project is licensed under the MIT License; see the license for details.
