A rust implementation of the Tumblr API.

This is still very much in beta! see Major Planned/Unimplemented Features

Examples

Example: Creating a simple post with the client

rust use tumblr_api::client::{Client, Credentials}; use tumblr_api::npf; let client = Client::new(Credentials::new_oauth2( "your consumer key", "your consumer secret", )); client .create_post( "blog-name", vec![npf::ContentBlockText::builder("hello world").build()], ) .send() .await?;

Major Planned/Unimplemented Features

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.