我如何从Google搜索API重新制作回报?

时间:2012-01-04 21:44:15

标签: api web

我如何使用谷歌搜索API来了解谷歌引擎,网站标题,简短描述和URL。可能吗?    我尝试了api,但它只给了我一些没有网站网址或标题的信息。

2 个答案:

答案 0 :(得分:0)

使用Google购物API,您可以检索标题,简短说明和网址。我在c#应用程序中实现了这一点,它从下面的url返回一个json文件并解析它。

您需要apiId开头。

使用此网址,您可以在q后添加搜索参数,在此示例中只搜索数码相机。

https://www.googleapis.com/shopping/search/v1/public/products?key=key&country=US&q=digital+camera

参见http://code.google.com/apis/shopping/search/v1/getting_started.html 了解更多详情

答案 1 :(得分:0)

我不确定我是否有足够的信息,但我发现Google Custom Search API参考页面有参考JSON / ATOM示例:
https://code.google.com/apis/customsearch/v1/reference.html

此查询将帮助您入门:
https://www.googleapis.com/customsearch/v1?key= {YOURAPIKEY}&安培; CX = CX {?}&安培; CREF = {CREF?}&安培; Q = ST%20olaf

这会让你入门吗?

小心! speeves