mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2026-03-22 20:31:36 +00:00
change CONSENT cookie value
FX is accept all tracking, PENDING should imply no tracking
This commit is contained in:
parent
5f47e1a71b
commit
aaf7d65b32
2 changed files with 2 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ def extract_channel(ucid):
|
|||
return channel_cache[ucid]
|
||||
|
||||
channel_type = "channel" if len(ucid) == 24 and ucid[:2] == "UC" else "user"
|
||||
with requests.get("https://www.youtube.com/{}/{}/videos?hl=en".format(channel_type, ucid), cookies={"CONSENT": "YES+cb.20210328-17-p0.en+FX+101"}) as r:
|
||||
with requests.get("https://www.youtube.com/{}/{}/videos?hl=en".format(channel_type, ucid), cookies={"CONSENT": "PENDING+999"}) as r:
|
||||
r.raise_for_status()
|
||||
yt_initial_data = extract_yt_initial_data(r.content.decode("utf8"))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue