diff options
author | Joe Rayhawk <jrayhawk@action.fairlystable.org> | 2023-05-03 01:36:38 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@action.fairlystable.org> | 2023-05-03 01:36:38 -0700 |
commit | d5858e2ef8f382b9e53308301ff7c7df3bf4b745 (patch) | |
tree | 88d3239f1a693f8702eac4d41490a3c95a21bf1d /src | |
parent | a5ae979dba586526b18f9a2a08f2748b3968aea0 (diff) | |
download | twitcr-d5858e2ef8f382b9e53308301ff7c7df3bf4b745.tar.gz twitcr-d5858e2ef8f382b9e53308301ff7c7df3bf4b745.zip |
enable unfiltered stream listing
Diffstat (limited to 'src')
-rw-r--r-- | src/twitcr/rest.cr | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/twitcr/rest.cr b/src/twitcr/rest.cr index 5286aeb..1be3190 100644 --- a/src/twitcr/rest.cr +++ b/src/twitcr/rest.cr @@ -123,6 +123,7 @@ module Twitcr::REST def get_streams( user_ids : Array( UInt64 ) ); request( "GET", Api::Helix, "/streams?user_id=#{user_ids.join( "&user_id=" )}" ) end def get_streams( user_id : UInt64 ); request( "GET", Api::Helix, "/streams?user_id=#{user_id}" ) end def get_streams( game_id : UInt64 ); request( "GET", Api::Helix, "/streams?first=100&game_id=#{game_id}" ) end + def get_streams(); request( "GET", Api::Helix, "/streams?first=100" ) end # Kraken returns more information def get_streams_v5( game : String ); request( "GET", Api::Kraken, "/streams?limit=100&game=#{URI.encode_www_form( game )}" ) end def get_streams_v5( *, channel : ( Array( UInt64 ) | UInt64 | Nil ) = nil, game : String? = nil, language : String? = nil, stream_type : String? = nil ); |