You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Provides URLs to download the video file(s) for the specified clips.
4230
+
4231
+
Requires User or App Authentication with :const:`~twitchAPI.type.AuthScope.EDITOR_MANAGE_CLIPS` or :const:`~twitchAPI.type.AuthScope.CHANNEL_MANAGE_CLIPS`\n
4232
+
For detailed documentation, see here: https://dev.twitch.tv/docs/api/reference#get-clips-download
4233
+
4234
+
:param editor_id: The User ID of the editor for the channel you want to download a clip for.
4235
+
If using the broadcaster’s auth token, this is the same as broadcaster_id. This must match the user_id in the user access token.
4236
+
:param broadcaster_id: The ID of the broadcaster you want to download clips for.
4237
+
:param clip_ids: List of clip IDs to download. Up to 10 allowed.
4238
+
:raises ~twitchAPI.type.TwitchAPIException: if the request was malformed
4239
+
:raises ~twitchAPI.type.UnauthorizedException: if user authentication is not set or invalid
4240
+
:raises ~twitchAPI.type.TwitchAuthorizationException: if the used authentication token became invalid and a re authentication failed
4241
+
:raises ~twitchAPI.type.TwitchBackendException: if the Twitch API itself runs into problems
4242
+
:raises ~twitchAPI.type.TwitchAPIException: if a Query Parameter is missing or invalid
4243
+
:raises ValueError: if clips_ids has more than 10 entries"""
0 commit comments