Twitch API | Rust library for talking with the new Twitch API aka. "Helix", EventSub and more!

![github]![crates-io]![docs-rs-big]![discord]

See documentation for more info.

You can see current unpublished docs for the main branch here: ![local-docs]

See examples for examples. If you want to run them locally, make sure you get the git submodules first.

```rust ,norun use twitchapi::helix::HelixClient; use twitchapi::twitchoauth2::{AccessToken, UserToken};

[tokio::main]

async fn main() -> Result<(), Box> { // Create the HelixClient, which is used to make requests to the Twitch API let client: HelixClient = HelixClient::default(); // Create a UserToken, which is used to authenticate requests let token = UserToken::from_token(&client, AccessToken::from("mytoken")).await?;

println!(
    "Channel: {:?}",
    client.get_channel_from_login("twitchdev", &token).await?
);

Ok(())

} ```

Notes

This crate was previously available as twitch_api2 and has since been renamed to twitch_api

Goals

This crate aims to target

This crate should also be able to be used for

There are no current plans to support

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.