mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[go90] detect geo restriction error and pass geo verification headers(closes #16874)
This commit is contained in:
		| @@ -4,6 +4,7 @@ from __future__ import unicode_literals | ||||
| import re | ||||
|  | ||||
| from .common import InfoExtractor | ||||
| from ..compat import compat_HTTPError | ||||
| from ..utils import ( | ||||
|     determine_ext, | ||||
|     ExtractorError, | ||||
| @@ -28,14 +29,27 @@ class Go90IE(InfoExtractor): | ||||
|             'age_limit': 14, | ||||
|         } | ||||
|     } | ||||
|     _GEO_BYPASS = False | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         video_id = self._match_id(url) | ||||
|         video_data = self._download_json( | ||||
|             'https://www.go90.com/api/view/items/' + video_id, | ||||
|             video_id, headers={ | ||||
|  | ||||
|         try: | ||||
|             headers = self.geo_verification_headers() | ||||
|             headers.update({ | ||||
|                 'Content-Type': 'application/json; charset=utf-8', | ||||
|             }, data=b'{"client":"web","device_type":"pc"}') | ||||
|             }) | ||||
|             video_data = self._download_json( | ||||
|                 'https://www.go90.com/api/view/items/' + video_id, video_id, | ||||
|                 headers=headers, data=b'{"client":"web","device_type":"pc"}') | ||||
|         except ExtractorError as e: | ||||
|             if isinstance(e.cause, compat_HTTPError) and e.cause.code == 400: | ||||
|                 message = self._parse_json(e.cause.read().decode(), None)['error']['message'] | ||||
|                 if 'region unavailable' in message: | ||||
|                     self.raise_geo_restricted(countries=['US']) | ||||
|                 raise ExtractorError(message, expected=True) | ||||
|             raise | ||||
|  | ||||
|         if video_data.get('requires_drm'): | ||||
|             raise ExtractorError('This video is DRM protected.', expected=True) | ||||
|         main_video_asset = video_data['main_video_asset'] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Remita Amine
					Remita Amine