Skip to content

Commit

Permalink
[ie/twitter] Remove cookies migration workaround (yt-dlp#11392)
Browse files Browse the repository at this point in the history
Closes yt-dlp#11338
Authored by: bashonly
  • Loading branch information
bashonly authored Oct 30, 2024
1 parent d569a88 commit 76802f4
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions yt_dlp/extractor/twitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,6 @@ def _search_dimensions_in_video_url(a_format, video_url):
def is_logged_in(self):
return bool(self._get_cookies(self._API_BASE).get('auth_token'))

# XXX: Temporary workaround until twitter.com => x.com migration is completed
def _real_initialize(self):
if self.is_logged_in or not self._get_cookies('https://twitter.com/').get('auth_token'):
return
# User has not yet been migrated to x.com and has passed twitter.com cookies
TwitterBaseIE._API_BASE = 'https://api.twitter.com/1.1/'
TwitterBaseIE._GRAPHQL_API_BASE = 'https://twitter.com/i/api/graphql/'

@functools.cached_property
def _selected_api(self):
return self._configuration_arg('api', ['graphql'], ie_key='Twitter')[0]
Expand Down

0 comments on commit 76802f4

Please sign in to comment.