22 个版本 (11 个重大更新)
使用旧的 Rust 2015
0.22.0 | 2020 年 6 月 8 日 |
---|---|
0.20.1 | 2019 年 5 月 23 日 |
0.19.0 | 2019 年 3 月 6 日 |
0.17.1 | 2018 年 12 月 13 日 |
0.16.0 | 2018 年 10 月 3 日 |
#2207 在 网页编程
每月下载量 172 次
用于 jokestodon
635KB
5K SLoC
Elefren
Mastodon API 包装器。
为 Mastodon 的 API 提供包装器
安装
要将 elefren
添加到您的项目中,请将以下内容添加到您的 Cargo.toml
的 dependencies
部分
elefren = "0.22"
示例
在您的 Cargo.toml
中,确保您启用了 toml
功能
[dependencies]
elefren = { version = "0.22", features = ["toml"] }
// src/main.rs
extern crate elefren;
use std::error::Error;
use elefren::prelude::*;
use elefren::helpers::toml; // requires `features = ["toml"]`
use elefren::helpers::cli;
fn main() -> Result<(), Box<dyn Error>> {
let mastodon = if let Ok(data) = toml::from_file("mastodon-data.toml") {
Mastodon::from(data)
} else {
register()?
};
let you = mastodon.verify_credentials()?;
println!("{:#?}", you);
Ok(())
}
fn register() -> Result<Mastodon, Box<dyn Error>> {
let registration = Registration::new("https://mastodon.social")
.client_name("elefren-examples")
.build()?;
let mastodon = cli::authenticate(registration)?;
// Save app data for using on the next run.
toml::to_file(&*mastodon, "mastodon-data.toml")?;
Ok(mastodon)
}
它还支持 Streaming API
use elefren::prelude::*;
use elefren::entities::event::Event;
use std::error::Error;
fn main() -> Result<(), Box<Error>> {
let data = Data {
base: "".into(),
client_id: "".into(),
client_secret: "".into(),
redirect: "".into(),
token: "".into(),
};
let client = Mastodon::from(data);
for event in client.streaming_user()? {
match event {
Event::Update(ref status) => { /* .. */ },
Event::Notification(ref notification) => { /* .. */ },
Event::Delete(ref id) => { /* .. */ },
Event::FiltersChanged => { /* .. */ },
}
}
Ok(())
}
依赖项
~27–43MB
~837K SLoC