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.
Paul Woolcock 55793f22e3 rename book -> guide 6 years ago
docs rename book -> guide 6 years ago
examples Move the `toml` helpers to `elefren::helpers::toml` 6 years ago
src Move the `toml` helpers to `elefren::helpers::toml` 6 years ago
tests Make sure our README example(s) always compile 6 years ago
.env.sample updated reqwest and fixed media route 7 years ago
.gitignore Make sure our README example(s) always compile 6 years ago
.travis.yml try to make travis happy 6 years ago
CHANGELOG.md Update CHANGELOG 6 years ago
Cargo.toml Make sure our README example(s) always compile 6 years ago
LICENCE-APACHE Initial commit 7 years ago
LICENCE-MIT Initial commit 7 years ago
README.md Move the `toml` helpers to `elefren::helpers::toml` 6 years ago
build.rs Make sure our README example(s) always compile 6 years ago
rustfmt.toml rustfmt pass 6 years ago

README.md

Elefren

A Wrapper for the Mastodon API.

Build Status Coverage Status crates.io Docs MIT/APACHE-2.0

Documentation

A wrapper around the API for Mastodon

Installation

To add elefren to your project, add the following to the [dependencies] section of your Cargo.toml

elefren = "0.12"

Usage

To use this crate in your project, add this to your crate root (lib.rs, main.rs, etc):

extern crate elefren;

Example

extern crate elefren;

use std::io;
use std::error::Error;

use elefren::prelude::*;
use elefren::apps::prelude::*;
use elefren::helpers::toml; // requires `features = ["toml"]`

fn main() -> Result<(), Box<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<Error>> {
    let registration = Registration::new("https://mastodon.social")
                                    .client_name("elefren-examples")
                                    .register()?;
    let url = registration.authorize_url()?;

    println!("Click this link to authorize on Mastodon: {}", url);
    println!("Paste the returned authorization code: ");

    let mut input = String::new();
    io::stdin().read_line(&mut input)?;

    let code = input.trim().to_string();
    let mastodon = registration.complete(code)?;

    // Save app data for using on the next run.
    toml::to_file(&*mastodon, "mastodon-data.toml")?;

    Ok(mastodon)
}