YouTube API搜索精确短语

时间:2013-01-16 17:52:25

标签: php search youtube-api feed

我正在使用YouTube PHP API来检索搜索确切术语“超级碗商业广告”的Feed。

但是,我有时会在Feed中收到不相关的视频。

$ searchTerms存储搜索查询。

$searchTerms2 = str_replace(" ","+",$searchTerms);
$searchTerms2 = '"' . $searchTerms2 . '"';

$query->setVideoQuery($searchTerms2);

有没有人知道这个问题的解决方案?

1 个答案:

答案 0 :(得分:1)

来自参考:To search for an exact phrase, enclose the phrase in quotation marks. For example, to search for videos matching the phrase "spy plane", set the q parameter to %22spy+plane%22.

那么你urlencode是你的引号吗?