Crate lib_mal[−][src]
Expand description
Quick Start
To use lib-mal you will need an API key from MyAnimeList.net, and a callback URL. An example of how to use lib-mal might look like this:
use lib_mal::MALClient; use tokio; //Can be whatever async executor you prefer #[tokio::main] async fn main(){ //this has to exactly match a URI that's been registered with the MAL api let redirect = [YOUR_REDIRECT_URI_HERE]; //the MALClient will attempt to refresh the cached access_token, if applicable let client = MALClient::new([YOUR_SECRET_HERE]).await; let (auth_url, challenge, state) = client.get_auth_parts(); //the user will have to have access to a browser in order to log in and give your application permission println!("Go here to log in :) -> {}", auth_url); //once the user has the URL, be sure to call client.auth to listen for the callback and complete the OAuth2 handshake client.auth(&redirect, &challenge, &state).await.expect("Unable to log in"); //once the user is authorized, the API should be usable //this will get the details, including all fields, for Mobile Suit Gundam let anime = client.get_anime_details(80, None).await.expect("Couldn't get anime details"); //because so many fields are optional, a lot of the members of lib_mal::model::AnimeDetails are `Option`s println!("{}: started airing on {}, ended on {}, ranked #{}", anime.show.title, anime.start_date.ok(), anime.end_date.ok(), anime.rank.ok()); }