1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-20 06:26:49 +02:00

[twitter] Fix for private videos (#2772)

Closes #2762, https://github.com/ytdl-org/youtube-dl/issues/27643
Authored by: iphoting
This commit is contained in:
Ronald Ip 2022-02-15 00:37:21 +08:00 committed by GitHub
parent 81c5f44c0f
commit 2d41e2eceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,6 +90,9 @@ def _call_api(self, path, video_id, query={}):
headers = {
'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAAPYXBAAAAAAACLXUNDekMxqa8h%2F40K4moUkGsoc%3DTYfbDKbT3jJPCEVnMYqilB28NHfOPqkca3qaAxGfsyKCs0wRbw',
}
token = self._get_cookies(self._API_BASE).get('ct0')
if token:
headers['x-csrf-token'] = token.value
if not self._GUEST_TOKEN:
self._GUEST_TOKEN = self._download_json(
self._API_BASE + 'guest/activate.json', video_id,