Hello, I believe the problem with your request is that you're setting the result set size to filtered_cse, which is only available for Filter CSE's, while the CSE ID that you're specifying is not a Filter CSE. Try changing the result set size to large or small and see if it solves your problem. For the JavaScript API, you can do this with .setResultSetSize(google.search.Search.LARGE_RESULTSET).
You can test this by taking your query above and replacing "&rsz=filtered_cse" with "&rsz=large". Please let us know if this works for you. Cheers! Adam On 28 апр, 17:32, Sandow Media <[email protected]> wrote: > I'm having an issue with the following query: > > http://www.google.com/uds/GwebSearch?callback=google.search.WebSearch... > > * This was decoded by firebug, it's not the encoding. > > ... which generates a failed response: > > google.search.WebSearch.RawCompletion('1',null, 404, 'invalid result > data', 200) > > ... yet it works via a cx request, this yields good results (shown to > verify the key is accurate): > > http://www.google.com/cse?cx=014825861171267122943%3At4efyv6jfzm&ie=U... > > ... and this one displays results. I saw a similar post that mentioned > this is an issue with certain keywords but this is a slightly > different response and a very basic query. > > After many refreshes I (very rarely) get a result for no reason but > most of the time I get the 404 error - is this timing out somewhere? > What can I do? > > -- > You received this message because you are subscribed to the Google Groups > "Google AJAX APIs" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/google-ajax-search-api?hl=en. -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en.
