有没有办法在使用Google Custom Search API时显示“相关搜索”

时间:2012-12-28 14:40:16

标签: web google-custom-search

我正在使用Google自定义搜索API在我的网站上显示谷歌搜索结果,但是,我想显示“相关搜索”,就像正常谷歌搜索底部显示的那样。

这可能吗?如果是这样,你怎么做?

提前致谢

1 个答案:

答案 0 :(得分:1)

我知道relatedQueries.enabled可以用“get”格式查看返回结果的示例,如下所示,全部来自此链接 https://developers.google.com/shopping-search/v1/reference-content-module-related-queries

GET https://www.googleapis.com/shopping/search/v1/public/products?country=US&q=shoes&relatedQueries.enabled=true&key=key

{
 "kind": "shopping#products",
 ...
 "relatedQueries": [
  "jordan shoes",
  "nike shoes",
  "dc shoes",
  "puma shoes"
 ]
 ...
 "items": [
  ...
 ]
}