mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-26 02:14:32 +01:00
[mediasite:catalog] Add AuthTicket to request data
This commit is contained in:
parent
68fa15155f
commit
c8d77fd5a0
@ -294,11 +294,17 @@ class MediasiteCatalogIE(InfoExtractor):
|
||||
r'AntiForgeryHeaderName\s*:\s*(["\'])(?P<value>(?:(?!\1).)+)\1',
|
||||
webpage, 'anti forgery header name',
|
||||
default='X-SOFO-AntiForgeryHeader', group='value')
|
||||
|
||||
# when AuthTicket: '' this finds no matches due to the + quantifier, returning None
|
||||
# None is serialized to null which matches the request
|
||||
auth_ticket = self._search_regex(
|
||||
r'AuthTicket\s*:\s*(["\'])(?P<value>(?:(?!\1).)+)\1',
|
||||
webpage, 'auth ticket', default=None, group='value')
|
||||
|
||||
data = {
|
||||
'IsViewPage': True,
|
||||
'IsNewFolder': True,
|
||||
'AuthTicket': None,
|
||||
'AuthTicket': auth_ticket,
|
||||
'CatalogId': catalog_id,
|
||||
'CurrentFolderId': current_folder_id,
|
||||
'RootDynamicFolderId': root_dynamic_folder_id,
|
||||
|
Loading…
Reference in New Issue
Block a user