Madcoda\Youtube\Youtube::searchChannelLiveStream PHP Method

searchChannelLiveStream() public method

public searchChannelLiveStream ( $q, $channelId, $maxResults = 10, $order = null )
    public function searchChannelLiveStream($q, $channelId, $maxResults = 10, $order = null)
    {
        $params = array('q' => $q, 'type' => 'video', 'eventType' => 'live', 'channelId' => $channelId, 'part' => 'id, snippet', 'maxResults' => $maxResults);
        if (!empty($order)) {
            $params['order'] = $order;
        }
        return $this->searchAdvanced($params);
    }