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 ddcef1940a Move `Data` struct to it's own module 6 years ago
docs Initialize book 6 years ago
examples rustfmt pass 6 years ago
src Move `Data` struct to it's own module 6 years ago
.env.sample updated reqwest and fixed media route 7 years ago
.gitignore Version 0.10.0-rc1 6 years ago
.travis.yml Fix .travis.yml bash command 6 years ago
CHANGELOG.md Version 11 6 years ago
Cargo.toml Revamp registration & auth process 6 years ago
LICENCE-APACHE Initial commit 7 years ago
LICENCE-MIT Initial commit 7 years ago
README.md Add `Installation` and `Usage` section to README 6 years ago
rustfmt.toml rustfmt pass 6 years ago

README.md

Elefren. A API Wrapper for the Mastodon API.

Build 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 = { git = "https://github.com/pwoolcoc/elefren" }

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;
extern crate toml;

use std::io;
use std::fs::File;
use std::io::prelude::*;

use elefren::{Data, Mastodon, Registration};
use elefren::apps::{AppBuilder, Scopes};

fn main() {
    let mastodon = match File::open("mastodon-data.toml") {
        Ok(mut file) => {
            let mut config = String::new();
            file.read_to_string(&mut config).unwrap();
            let data: Data = toml::from_str(&config).unwrap();
            Mastodon::from(data)
        },
        Err(_) => register(),
    };

    let you = mastodon.verify_credentials().unwrap();

    println!("{:#?}", you);
}

fn register() -> Mastodon {
    let app = AppBuilder {
        client_name: "elefren-examples",
        redirect_uris: "urn:ietf:wg:oauth:2.0:oob",
        scopes: Scopes::Read,
        website: Some("https://github.com/pwoolcoc/elefren"),
    };

    let mut registration = Registration::new("https://mastodon.social");
    registration.register(app).unwrap();;
    let url = registration.authorise().unwrap();

    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).unwrap();

    let code = input.trim();
    let mastodon = registration.create_access_token(code.to_string()).unwrap();

    // Save app data for using on the next run.
    let toml = toml::to_string(&*mastodon).unwrap();
    let mut file = File::create("mastodon-data.toml").unwrap();
    file.write_all(toml.as_bytes()).unwrap();

    mastodon
}