radiobot/webhook.php

15 lines
323 B
PHP
Raw Normal View History

<?php
2018-10-24 05:28:49 +00:00
$json = json_decode(file_get_contents('php://input'));
$msg = "\x0303";
if ($json->live->is_live)
$msg .= "({$json->live->streamer_name}) ";
$msg .= "now playing: ";
$msg .= $json->now_playing->song->text . " ";
$msg .= "~~ {$json->listeners->current} listeners";
file_put_contents("now_playing.txt", $msg);