gpt4 book ai didi

c# - 有没有办法绕过谷歌的 100 个搜索配额?

转载 作者:太空狗 更新时间:2023-10-30 01:01:42 26 4
gpt4 key购买 nike

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.

关于c# - 有没有办法绕过谷歌的 100 个搜索配额?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37455213/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com