mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[TikTok] Fallback to feed API endpoint (#2142)
Authored by: MinePlayersPE Workaround for #2133
This commit is contained in:
		| @@ -348,10 +348,18 @@ class TikTokIE(TikTokBaseIE): | |||||||
|     }] |     }] | ||||||
|  |  | ||||||
|     def _extract_aweme_app(self, aweme_id): |     def _extract_aweme_app(self, aweme_id): | ||||||
|         aweme_detail = self._call_api('aweme/detail', {'aweme_id': aweme_id}, aweme_id, |         try: | ||||||
|                                       note='Downloading video details', errnote='Unable to download video details').get('aweme_detail') |             aweme_detail = self._call_api('aweme/detail', {'aweme_id': aweme_id}, aweme_id, | ||||||
|         if not aweme_detail: |                                           note='Downloading video details', errnote='Unable to download video details').get('aweme_detail') | ||||||
|             raise ExtractorError('Video not available', video_id=aweme_id) |             if not aweme_detail: | ||||||
|  |                 raise ExtractorError('Video not available', video_id=aweme_id) | ||||||
|  |         except ExtractorError as e: | ||||||
|  |             self.report_warning(f'{e}; Retrying with feed workaround') | ||||||
|  |             feed_list = self._call_api('feed', {'aweme_id': aweme_id}, aweme_id, | ||||||
|  |                                        note='Downloading video feed', errnote='Unable to download video feed').get('aweme_list') or [] | ||||||
|  |             aweme_detail = next(aweme for aweme in feed_list if str(aweme.get('aweme_id')) == aweme_id) | ||||||
|  |             if not aweme_detail: | ||||||
|  |                 raise ExtractorError('Unable to find video in feed', video_id=aweme_id) | ||||||
|         return self._parse_aweme_video_app(aweme_detail) |         return self._parse_aweme_video_app(aweme_detail) | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 MinePlayersPE
					MinePlayersPE