megalodon

Crates.iomegalodon
lib.rsmegalodon
version0.13.10
sourcesrc
created_at2022-09-23 08:28:03.240653
updated_at2024-11-02 12:51:51.05953
descriptionMastodon and Pleroma API client library for Rust.
homepagehttps://github.com/h3poteto/megalodon-rs
repositoryhttps://github.com/h3poteto/megalodon-rs
max_upload_size
id672328
size1,500,938
AkiraFukushima (h3poteto)

documentation

README

Megalodon

Crates.io docs.rs Build GitHub

The megalodon is a client library for Fediverse. It provides REST API and streaming method which uses WebSocket. By using this library, you can take Mastodon, Pleroma, and Friendica with the same interface. This library is Rust version of megalodon.

Supporting

  • Mastodon
  • Pleroma
  • Friendica
  • Firefish
  • Gotosocial
  • Akkoma (Unofficial)

Features

  • REST API

  • Admin API

  • WebSocket for Streamings

Usage

Add your Cargo.toml like this:

[dependencies]
megalodon = { version = "0.11" }

Making Mastodon request

For a request without authentication.

let client = megalodon::generator(
  megalodon::SNS::Mastodon,
  String::from("https://fedibird.com"),
  None,
  None,
);
let res = client.get_instance().await?;
println!("{:#?}", res.json());

Making Mastodon request with authentication

For a request with authentication.

let client = megalodon::generator(
  megalodon::SNS::Mastodon,
  String::from("https://fedibird.com"),
  Some(String::from("your access token")),
  None,
);
let res = client.verify_account_credentials().await?;
println!("{:#?}", res.json());

License

The software is available as open source under the terms of the Apache License 2.0.

Commit count: 564

cargo fmt