Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Suspected Terms of Service Abuse. Please see http://code.google.com/apis/errors

I have been using

http://ajax.googleapis.com/ajax/services/search/web?v=1.0&rsz=large&safe=active&q={0}&start={1} 

in my application to search a term in google and return results.

Initially it is working properly.. but after sometime it is giving an error

"Suspected Terms of Service Abuse. Please see http://code.google.com/apis/errors"

like image 758
Pavan Kumar Avatar asked Sep 26 '13 09:09

Pavan Kumar


1 Answers

To understand what's going on is enough to read the red message in the given URL:

http://code.google.com/apis/errors

"Note: The Google Search and Language APIs shown to the right have been officially deprecated. They will continue to work as per our deprecation policy, but the number of requests you may make per day will be limited. Please visit the documentation for each API for further details and alternatives."

It says the Web Search API has been deprecated and you should look for an alternative. I think you probably made too many requests, and they have been limited (see the bold text).

like image 169
ᗩИᎠЯƎᗩ Avatar answered Oct 20 '22 15:10

ᗩИᎠЯƎᗩ