PHP kód:
<?php
$channel = $_GET["ch"];
$cap = $_GET["c"];
$q = $_GET["q"];
$json = file_get_contents('http://sledovanitv.cz/api/device-login?deviceId=xxxxxxxxxx&password=xxxxxxxxxx&version=3.2.004&lang=cs&unit=default');
$data = json_decode($json,true);
$sessid = $data['PHPSESSID'];
file_get_contents("http://sledovanitv.cz/api/pin-unlock?pin=xxxx&whitelogo=1&PHPSESSID=".$sessid);
$url = ("http://sledovanitv.cz/vlc/api-channel/".$channel.".m3u8?quality=".$q."&capabilities=".$cap.",adaptive&PHPSESSID=".$sessid);
header('Location: '.$url.'');
exit;
?>
