-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathget_channel_status.rs
47 lines (43 loc) · 1.27 KB
/
get_channel_status.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use twitch_api::{helix::streams::GetStreamsRequest, types, HelixClient};
use twitch_oauth2::{AccessToken, UserToken};
fn main() {
use std::error::Error;
if let Err(err) = run() {
println!("Error: {err}");
let mut e: &'_ dyn Error = err.as_ref();
while let Some(cause) = e.source() {
println!("Caused by: {cause}");
e = cause;
}
}
}
#[tokio::main]
async fn run() -> Result<(), Box<dyn std::error::Error + Send + Sync + 'static>> {
let _ = dotenvy::dotenv();
let mut args = std::env::args().skip(1);
let client: HelixClient<reqwest::Client> = HelixClient::new();
let token = UserToken::from_existing(
&client,
std::env::var("TWITCH_TOKEN")
.ok()
.or_else(|| args.next())
.map(AccessToken::new)
.expect("Please set env: TWITCH_TOKEN or pass token as first argument"),
None,
None,
)
.await
.unwrap();
let response = client
.req_get(
GetStreamsRequest::user_logins(
&[types::UserNameRef::from_str(&args.next().unwrap())][..],
),
&token,
)
.await
.unwrap()
.data;
println!("Stream information:\n\t{response:?}");
Ok(())
}