This project is not covered by Drupal’s security advisory policy.

YouTube Data API V3 integration.

This module allow drupal developers to work with google YouTube API V3 easier. As this is an API module, it in itself doesn't do anything.

For Example, to search 'drupal' videos on youtube, You have just to call:

use Drupal\youtubeapi\YoutubeAPI\Search;

$api = new YoutubeSearch();
$api->addQuery(YoutubeSearch::q, 'drupal');
//Optionally.
$api->addQuerys([YoutubeSearch::part => 'snippet', YoutubeSearch::type => 'video']);
$result = $api->execute();;

Project information

Releases