thePlatform(rte.ie)

This commit is contained in:
FoxRefire
2024-05-03 19:21:17 +09:00
parent a75b721e7f
commit 835ccf5a45
3 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
payload = json.loads(base64.b64decode(licBody.encode()).decode())
b64challenge = base64.b64encode(challenge).decode()
payload["getWidevineLicense"]["widevineChallenge"]=b64challenge
res = await (await pyfetch(licUrl,
method="POST",
headers=licHeaders,
body=json.dumps(payload)
)).json()
licence = base64.b64decode(res["getWidevineLicenseResponse"]["license"].encode())