We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fabd5c6 + 1938cdb commit b40ebd6Copy full SHA for b40ebd6
resources/lib/twitch/api/v5/games.py
@@ -29,9 +29,11 @@ def _check_follows(username, name):
29
# required scope: none
30
# undocumented / unsupported
31
@query
32
-def _get_followed(username):
+def _get_followed(username, limit=25, offset=0):
33
q = HQry('users/{username}/follows/games')
34
q.add_urlkw(keys.USERNAME, username)
35
+ q.add_param(keys.LIMIT, limit, 25)
36
+ q.add_param(keys.OFFSET, offset, 0)
37
return q
38
39
0 commit comments