Available on crate feature helix only.
Expand description

Helix endpoints regarding streams

Examples

let client = HelixClient::new();
let req = GetStreamsRequest::builder()
    .user_login(vec!["justinfan1337".into()])
    .build();

// If this doesn't return a result, that would mean the stream is not live.
println!("{:?}", &client.req_get(req, &token).await?.data.get(0));

Modules

Gets information about active streams belonging to channels that the authenticated user follows. get-followed-streams

Gets the list of tags for a specified stream (channel). get-stream-tags

Gets information about active streams. get-streams

Applies specified tags to a specified stream, overwriting any existing tags applied to that stream. If no tags are specified, all tags previously applied to the stream are removed. Automated tags are not affected by this operation. replace-stream-tags

Structs

Enums

Type Definitions

Return Values for Get Stream Tags