有没有办法绕过 google 的 100 次搜索配额?

Is there a way to bypass google's 100 search quota?

Google 有 100 个搜索配额,这个配额太低了,没有任何用处。我每 运行 一次搜索,配额就会增加 1。这是代码:

string apiKey = "(MY API KEY HERE)";
string cx = "(MY CUSTOM SEARCH ENGINE CODE HERE)";
var tempi = 0;

var svc = new Google.Apis.Customsearch.v1.CustomsearchService(new BaseClientService.Initializer { ApiKey = apiKey });

string query = "test"
potato = 0;
var listRequest = svc.Cse.List(query);
listRequest.Cx = cx;
var search = listRequest.Execute();

foreach (var result in search.Items.Take(3))
{
    if (potato == 0)
    {
         console.WriteLine("**Title:** " + result.Title + "\n**Link:** " + result.Link);
         potato += 1;
    }
}

有什么方法可以不用每次都用完查询吗?如果没有,是否还有其他 API 可以做类似的事情?

这是Google商业模式的一部分。如果您想超出配额,则需要开始为该服务付费。

You can find the pricing here.