0

I need to do a google search news with an OR condition. I have tried the following but not working "Test Car" + "Coffee" + "Pills"

So it should return me results in the news for Test Car Or Cofee or Pills.

I need to to it this way vs each one individually as the result I will feed into an application.

4

2 に答える 2

0

have you tried:

"Test Car" OR "Coffee" OR "Pills"

from: http://support.google.com/websearch/bin/answer.py?hl=en&answer=136861

于 2012-11-01T15:03:10.767 に答える
0

App Engine does not directly support disjunction queries like this, because they cannot be executed any more efficiently by a query planner than by you. Instead, make 3 separate queries and merge the results (if needed).

于 2012-11-01T16:56:35.970 に答える