Status: 🟢 Live on Cloudflare Edge
This proxy server is optimized for Widevine, PlayReady, and FairPlay license requests.
URL: /?target=YOUR_TARGET_URL
Example: https://sidcdmproxy.bysidimad.workers.dev/?target=https://license.server.com
const proxy = 'https://sidcdmproxy.bysidimad.workers.dev/?target=';
const target = encodeURIComponent('https://license-server.com/v1/license');
fetch(proxy + target, {
method: 'POST',
headers: { 'Content-Type': 'application/octet-stream' },
body: drmChallengeBuffer
});