我正在使用YouTube PHP API来检索搜索确切术语“超级碗商业广告”的Feed。
但是,我有时会在Feed中收到不相关的视频。
$ searchTerms存储搜索查询。
$searchTerms2 = str_replace(" ","+",$searchTerms);
$searchTerms2 = '"' . $searchTerms2 . '"';
$query->setVideoQuery($searchTerms2);
有没有人知道这个问题的解决方案?
答案 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
是你的引号吗?