2012-12-28 83 views
5

我正在使用Google自定義搜索API在我的網站上顯示Google搜索結果,但是,我想顯示「相關搜索」顯示在正常谷歌搜索的底部。使用Google自定義搜索API時是否顯示「相關搜索」

這可能嗎?如果是這樣,你怎麼做?

在此先感謝

+0

差不多的重複http://stackoverflow.com/questions/11547584/google-custom-search-api-searches-related-to-function –

回答

1

我知道relatedQueries.enabled可以「搞定」的格式來見例如,對於返回的結果如下圖所示,所有從這個鏈接 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": [ 
    ... 
] 
} 
+0

這僅限購物? – Tom

相關問題