Crates.io | tumblr_api |
lib.rs | tumblr_api |
version | 0.2.0 |
source | src |
created_at | 2023-09-10 03:23:54.189335 |
updated_at | 2024-02-12 08:30:49.070823 |
description | Tumblr API client |
homepage | |
repository | https://github.com/adrianmgg/tumblr_api |
max_upload_size | |
id | 968513 |
size | 75,597 |
A rust implementation of the Tumblr API.
This is still very much in beta! see Major Planned/Unimplemented Features
use tumblr_api::{npf, client::Client, auth::Credentials};
let client = Client::new(Credentials::new(
"your consumer key",
"your consumer secret",
));
client
.create_post(
"blog-name",
vec![npf::ContentBlockText::builder("hello world").build()],
)
.send()
.await?;
use tumblr_api::client::CreatePostState;
// load the image that we'll be attaching to the post.
let my_image = std::fs::read("path/to/my_image.jpg")?;
// (currently, you need to manually create the reqwest::Body to pass in. that'll probably
// change in a future version.)
let my_image = reqwest::Body::from(my_image);
client
.create_post(
"blog-name",
vec![
npf::ContentBlockText::builder("hello world").build(),
npf::ContentBlockImage::builder(vec![npf::MediaObject::builder(
npf::MediaObjectContent::Identifier("my-image-identifier".into()),
)
.build()])
.build(),
npf::ContentBlockText::builder("some bold text in a heading")
.subtype(npf::TextSubtype::Heading1)
.formatting(vec![npf::InlineFormat {
start: 5,
end: 9,
format: npf::InlineFormatType::Bold,
}])
.build(),
],
)
.add_attachment(my_image, "image/jpeg", "my-image-identifier")
// add tags to your post
// (this is currently a string since that's what the underlying api takes.
// Being able to pass a Vec<String> instead is a planned feature but hasn't been
// implemented quite yet.)
.tags("tag_1,tag_2,tag_3")
// add the post to your queue instead of immediately posting it
.initial_state(CreatePostState::Queue)
.send()
.await?;
This library is split into multiple modules - client
, api
, npf
, and auth
- and each has a feature flag of the same name that controls whether it's enabled.
They'll all be enabled by default, but if you only need certain features (e.g. just npf parsing) you can enable just those instead.
Licensed under either of
at your option.
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.