8

我正在尝试在我的 .NET 项目中使用 Google 自定义搜索 API。我有我公司提供的 API 密钥。我使用我的 Google 帐户创建了一个自定义搜索引擎并复制了“cx”值。

我正在使用以下代码:

string apiKey = "My company Key";
string cx = "Cx";
string query = tbSearch.Text;

WebClient webClient = new WebClient();
webClient.Headers.Add("user-agent", "Only a test!");

string result = webClient.DownloadString(String.Format("https://www.googleapis.com/customsearch/v1?key={0}&cx={1}&q={2}&alt=json", apiKey, cx, query));

我收到以下错误:“远程服务器返回错误:(403) Forbidden。”

我也尝试过以下代码:

Google.Apis.Customsearch.v1.CustomsearchService svc = new Google.Apis.Customsearch.v1.CustomsearchService();
svc.Key = apiKey;

Google.Apis.Customsearch.v1.CseResource.ListRequest listRequest = svc.Cse.List(query);
listRequest.Cx = cx;
Google.Apis.Customsearch.v1.Data.Search search = listRequest.Fetch();

foreach (Google.Apis.Customsearch.v1.Data.Result result1 in search.Items)
{
   Console.WriteLine("Title: {0}", result1.Title);
   Console.WriteLine("Link: {0}", result1.Link);
}

在这里,我在 Fetch() 处得到以下异常:

Google.Apis.Requests.RequestError 访问未配置 [403] 错误 [消息 [访问未配置] 位置 [-] 原因 [accessNotConfigured] 域 [usageLimits]

是否需要 CX 参数?我是否因为使用公司提供的密钥并使用我的 Google 帐户使用自定义搜索引擎中的 CX 参数而收到错误?

有没有其他方法可以获得'cx'?我们不想展示 Google AD。

非常感谢您的帮助。

4

3 回答 3

14

我不确定你是否仍然对此感兴趣。

要获得没有广告的结果,您需要付费。 信息@谷歌

是的,cx 是必需的,因为它指定了您要用于搜索的 google 自定义搜索引擎。您可以从此谷歌页面创建自定义搜索引擎

这是检索当前 api 版本 1.3.0-beta 的搜索结果的当前代码

        string apiKey = "Your api key";
        string cx = "Your custom search engine id";
        string query = "Your query";

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

        listRequest.Cx = cx;
        var search = listRequest.Fetch();

        foreach (var result in search.Items)
        {
            Response.Output.WriteLine("Title: {0}", result.Title);
            Response.Output.WriteLine("Link: {0}", result.Link);
        }

希望这可以帮助

于 2013-05-01T17:36:33.953 回答
12

代替,

var search = listRequest.Fetch();

但现在它不支持 Fetch() 方法,而需要使用 Execute() 方法。

var search = listRequest.Execute();
于 2014-12-12T12:03:36.227 回答
2
var listRequest = svc.Cse.List(query);

错误 !!!你应该使用:

var listRequest = svc.Cse.List();

接着 :

listRequest.Q=query
于 2020-07-25T08:31:24.327 回答