So I am trying to pull out videos from Youtube for specific video games. This I have working almost fine, however on querying the video game title, some (mostly ones that share names with sports franchises, films, etc) are coming back with non video game related results.
I have looked in the documentation here and found the topicId filter, however I am struggling to use it.
If I try to put something in it comes back with:
$searchResponse = $youtube->search->list(array('q' => $_GET['q'],'maxResults' => $_GET['maxResults'],'part' => 'id','order' => 'relevance','type' => 'video','topicId' => '/m/0d6lp'));(list) unknown parameter: 'topicId'
Also having trouble using the freebase API to return a topic I need.
All I want to do is filter videos only with the following:
So any ideas how I limit youtube searches to video games only with the search api?