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

use*_*692 5 google-custom-search web

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

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

提前致谢

小智 1

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

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": [
  ...
 ]
}
Run Code Online (Sandbox Code Playgroud)