如何在Google Custom Search API中启用图片搜索

时间:2012-08-24 20:18:27

标签: json rest api google-api

请帮我处理GET请求参数。

问题:如何在Google Custom Search API中启用图片搜索?

手册是here,但它只适用于网络搜索。

例如,使用文字进行网络搜索会返回:

{https://www.googleapis.com/customsearch/v1?key={MY-KEY}&cx=013036536707430787589:_pqjad5hr1a&q=flowers&alt=json}

图片搜索应该有额外的参数searchType=image

{https://www.googleapis.com/customsearch/v1?key={MY-KEY}&cx=013036536707430787589:_pqjad5hr1a&q=flowers&searchType=image&alt=json}

但它返回JSON,搜索结果为0。

请告诉我我做错了什么。 提前谢谢。

2 个答案:

答案 0 :(得分:1)

这应该在搜索引擎配置中启用(默认情况下禁用)。我也花了一些时间研究它为什么不起作用。

答案 1 :(得分:0)

我使用API​​资源管理器模拟搜索并以此方式获得更正后的网址

https://www.googleapis.com/customsearch/v1?q={QUERY}&cx={CX}&{OPTIONS}={VALUES}&key={YOUR_API_KEY}&searchType=image&alt=json

听起来很傻,显然确切的顺序对它起作用很重要。