gpt4 book ai didi

c# - Google 趋势 - 5 次调用后达到配额限制

转载 作者:太空宇宙 更新时间:2023-11-03 16:08:50 27 4
gpt4 key购买 nike

我尝试在我的网络应用程序中实现 Google 趋势。这是我的代码:

 using (var client = new WebClient())
{
var username = "USERNAME";
var password = "PASSWORD";


var response = client.DownloadString(string.Format("https://www.google.com/accounts/ClientLogin?accountType=GOOGLE&Email={0}&Passwd={1}&service=trendspro&source=test-test-v1", username, password));

var auth = response.Split('\n')[2];
client.Headers.Add("Authorization", "GoogleLogin " + auth);

Uri url = new Uri(string.Format("https://www.google.com/trends/fetchComponent?q={0}&cid=TOP_QUERIES_0_0&export=3", keyword));
string result = client.DownloadString(url);

result = result.Replace("google.visualization.Query.setResponse(", string.Empty);
result = result.Replace(");", string.Empty);
result = result.Replace("// Data table response", string.Empty);

我实际上只需要一个关键字的热门查询。该代码工作正常,但在 5 次查询后,我收到一条错误消息,提示我已达到我的配额限制。等了一个小时后,我可以再做两次查询,我又达到了我的极限。但我仍然可以在 Google 趋势网站上搜索关键字。

有人可以帮帮我吗?我做错了什么?

谢谢

克里斯汀

最佳答案

如果我理解正确的话,Google 趋势有一个请求配额。听起来它已连接到 IP 地址,所以这就是为什么您在电话上搜索后不会影响您在计算机上的搜索。另外,听起来快速连续搜索也有限制。

对此并不乐观,但看起来就是这样。

关于c# - Google 趋势 - 5 次调用后达到配额限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18262404/

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