我正在使用谷歌自定义搜索 API 在我的网站上显示谷歌搜索结果,但是,我想显示“相关搜索”,就像在普通谷歌搜索底部显示的那样。
这可能吗?如果是这样,你怎么做?
提前致谢
我正在使用谷歌自定义搜索 API 在我的网站上显示谷歌搜索结果,但是,我想显示“相关搜索”,就像在普通谷歌搜索底部显示的那样。
这可能吗?如果是这样,你怎么做?
提前致谢
我知道relatedQueries.enabled 可以以“get”格式使用,请参阅返回结果的示例,如下所示,全部来自此链接 https://developers.google.com/shopping-search/v1/reference-content-module-related -查询
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": [
...
]
}