0

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

但是,有时我会在提要中看到不相关的视频。

$searchTerms 存储搜索查询。

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

$query->setVideoQuery($searchTerms2);

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

4

1 回答 1

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你的引号?

于 2013-01-16T18:08:26.373 回答