mcfedr / youtubelivestreamsbundle
A bundle for fetching a list of live streams
Installs: 98
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.6
- guzzlehttp/guzzle: ^6.2
- sensio/framework-extra-bundle: ^3.0
- symfony/symfony: ^3.1
Requires (Dev)
README
A bundle for sending tweets as push notifications
Install
Composer
php composer.phar require mcfedr/youtubelivestreamsbundle
AppKernel
Include the bundle in your AppKernel You need to also load the AWSPushBundle
public function registerBundles()
{
$bundles = array(
...
new Mcfedr\YouTube\LiveStreamsBundle\McfedrYouTubeLiveStreamsBundle(),
Routing
Setup the controllers in your routing.yml
mcfedr_you_tube_live_streams:
resource: "@McfedrYouTubeLiveStreamsBundle/Controller/"
type: annotation
prefix: /
Config
This is sample configuration, to add to your config.yml
mcfedr_you_tube_live_streams:
api_key: youtube api key
channel_id: id of the channel
cache_timeout: 3600 #cache for an hour
You might want to put something like this in your config_dev.yml
mcfedr_you_tube_live_streams:
cache_timeout: 0
Usage
You get get your list of streams
GET /streams
{
"streams": [
{
"name": "Громадське ONLINE. 6 березня",
"thumb": "https://i.ytimg.com/vi/Ou7hfc_LAeY/hqdefault.jpg",
"videoId": "Ou7hfc_LAeY"
},
{
"name": "Hromadske ONLINE RU",
"thumb": "https://i.ytimg.com/vi/O5j1mifrhK4/hqdefault.jpg",
"videoId": "O5j1mifrhK4"
}
]
}