What does this module do. How does it integrate with google API V3. I see that there is an input to paste your key but what happens after that?

Comments

hassan2 created an issue. See original summary.

NuWans’s picture

Hello,
This is the first version of the module, currently It can use only for search youtube videos.
For example, to find "drupal" videos

   use Drupal\youtubeapi\YoutubeAPI\Search;

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

I'm trying to update as soon as possible.

NuWans’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.