summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/twitcr/rest.cr1
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 );