Update instagram.py

This commit is contained in:
Dan 2023-02-19 12:49:22 -07:00 committed by GitHub
parent d59a219b65
commit 2ab7c62bcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -59,7 +59,10 @@ class InstagramBaseIE(InfoExtractor):
shared_data = self._parse_json(self._search_regex(
r'\["XIGSharedData",\s*\[\],\s*({.+?}),\d+\]', login_webpage, 'shared data', default='{}'), None)
shared_data = shared_data.get('native', {})
if shared_data.get('native', {}).get('config', {}).get('csrf_token'):
shared_data = shared_data['native']
else:
shared_data = json.loads(shared_data.get('raw', '{}'))
login = self._download_json(
f'{self._LOGIN_URL}/ajax/', None, note='Logging in', headers={