mastodon API rust lib elefren, fixed and updated. and also all ASYNC! NB. most examples are now wrong.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
elefren-fork/README.md

36 lines
1.0 KiB

7 years ago
# Mammut. A API Wrapper for the Mastodon API.
7 years ago
## [Documentation](https://docs.rs/mammut/)
7 years ago
A wrapper around the [API](https://github.com/tootsuite/mastodon/blob/master/docs/Using-the-API/API.md#tag) for [Mastodon](https://mastodon.social/)
```rust
7 years ago
extern crate mammut;
use mammut::Registration;
use mammut::apps::{AppBuilder, Scope};
7 years ago
fn main() {
run().unwrap();
}
7 years ago
fn run() -> mammut::Result<()> {
let app = AppBuilder {
client_name: "mammut_test",
redirect_uris: "urn:ietf:wg:oauth:2.0:oob",
scopes: Scopes::Read,
7 years ago
website: None,
};
7 years ago
let mut registration = Registration::new("https://mastodon.social");
7 years ago
registration.register(app)?;
let url = registration.authorise()?;
// Here you now need to open the url in the browser
// And handle a the redirect url coming back with the code.
let code = String::from("RETURNED_FROM_BROWSER");
let mastodon = registration.create_access_token(code)?;
println!("{:?}", mastodon.get_home_timeline()?);
Ok(())
}
```