Google Javascript自定义搜索API:按图片网址搜索图片

时间:2013-01-12 22:03:11

标签: javascript api

我试图逐个搜索图像并且它正在工作,但我需要通过网址搜索图像。 我需要找到相同的图像,但尺寸更大。

<html>
  <head>
    <title>JSON/Atom Custom Search API Example</title>
  </head>
  <body>
    <div id="content"></div>
    <script>
      function hndlr(response) {
          console.log(response);
      }
    </script>
    <script src="https://www.googleapis.com/customsearch/v1?key={your_developer_key_here}&cx={your_engine_id_here}&q=http://i.ytimg.com/vi/gonBdNO7VbY/hqdefault.jpg&callback=hndlr&imgSize=large&searchType=image">
    </script>
  </body>
</html>

抱歉无法提供dev密钥,因为它每天有100个查询限制。

底部有测试表格: https://developers.google.com/custom-search/v1/cse/list?hl=ru

我试图通过谷歌图片搜索表单查看传递的参数。

这是image_url = http://i.ytimg.com/vi/gonBdNO7VbY/hqdefault.jpg,但是将其添加到api请求中并没有给出任何结果。

有可能做这样的事吗?

0 个答案:

没有答案