Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using YouTube PHP API to retrieve a feed that searches for the exact term "super bowl commercials".

However, I sometimes get irrelevant videos in the feed.

$searchTerms stores the search query.

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

$query->setVideoQuery($searchTerms2);

Does any one know of a solution to this issue?

share|improve this question
show us the full api link – Osa Jan 16 at 17:55

1 Answer

up vote 0 down vote accepted

From reference: 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.

So you urlencode your quotation marks?

share|improve this answer
Could you please show me an example using PHP API? – Michael Jan 18 at 2:27
I don't have a PHP example, but as long as your url looks like https://gdata.youtube.com/feeds/api/videos?q=%22super+bowl+commercials%22&order‌​by=published&max-results=5&v=2 it should be fine. Try to debug it and output the final url to see whats going on in your script. – redreggae Jan 18 at 12:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.