-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug in VdoCipher schemes #13
Comments
Could you edit popup.js like following and check log output? window.corsFetch = (u, m, h, b) => {
return new Promise((resolve, reject) => {
+ console.log("Debug:"+pageURL)
chrome.tabs.query({ url:pageURL }, (tabs) => {
chrome.tabs.sendMessage(tabs[0].id, {type:"FETCH", u:u, m:m, h:h, b:b}, (res) => {
resolve(res)
})
})
})
} |
when i change code to this but unfortunately after doing this change the response is {'code': 2011, 'message': 'request unwrapping failed'} :( |
I see. |
same error {'code': 2011, 'message': 'request unwrapping failed'}, |
Hmm, Did you enable License blocking? If this does not work, try the following:
|
I tested that before, tested with unconsumed token (request blocking with fiddler) but always {"code": 2046,"message":"Authentication failed"}", I think my CDM is the problem, I will test with other fresh CDM when possible, thank you very much |
Could you send DRM Info screenshot on your phone? |
|
The screenshot shows a slightly older Android version, so perhaps that is the cause. |
probably, |
Im trying the Vdocipher demo page to test the ext, using a moto c plus(android 7.0) cdm but it doesnt fetch the keys. Theres no error per se, but the ext freezes and does nothing. Not creating a new issue as this thread effectively highlights this. Quick notes:
|
Hello @FoxRefire |
Hi,
When using VdoCipher scheme and when executing "await js.corsFetch(..)"
[with Firefox]
i have this error: "TypeError: tabs[0] is undefined"
[with Chrom]
i have this error: "TypeError: Cannot read properties of undefined (reading 'id')"
i checked url, headers (before js transformation), payload! all seems to be ok!
thank you very mutch
The text was updated successfully, but these errors were encountered: