Connect to YouTube & Vimeo and publish social videos on your website.
This plugin requires Craft CMS 5.0.0+.
Open your terminal and run the following commands:
# go to the project directory
cd /path/to/my-project
# tell Composer to load the plugin
composer require boundstate/craft-videos
# tell Craft to install the plugin
./craft plugin/install videos
<?php
return [
// cache API requests
'enableCache' => true,
// https://php.net/dateinterval.construct
'cacheDuration' => 'PT15M',
// OAuth provider options
'oauthProviderOptions' => [
'youtube' => [
'clientId' => '000000000000-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com',
'clientSecret' => 'xxxxxxxxxxxxxxxxxxxxxxxx'
],
'vimeo' => [
'clientId' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'clientSecret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
],
],
// videos per page in the explorer
'videosPerPage' => 30,
];