We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 41931 ☆ A M B ☆
    • 38 Posts
    Turn Livestream Channel Status On or Off

    Create a snippet: [[livestream]] and modify page to nocache
    <?php
    // Check if your New Livestream Channel [new.livestream.com] is Live
    //Verificar se o seu canal no New Livestream[new.livestream.com] está Ao Vivo
    
    $account = "youraccount";
    $channel = "yourchannel";
    $json = file_get_contents("http://new.livestream.com/api/accounts/".$account."/events/".$channel."/viewing_info", true);
    $decode = json_decode($json, true);
    $live = $decode[streamInfo][is_live];
    
    if($live == 1){
    echo 'On';
    }
    else
    {
    echo 'Off';
    }
    ?>


    GIT: https://gist.github.com/8601994.git

    Enjoy!