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

我试图搜索图像的短语,它的工作,但我需要通过网址搜索图像。 我需要找到相同的图像,但尺寸较大。

<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>

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

底部有测试表单:https://developers.google.com/custom-search/v1/cse/list?hlru

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

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

是否有可能做这样的事情?

链接地址: http://www.djcxy.com/p/83789.html

上一篇: Google Javascript Custom Search API: Search images by image url

下一篇: How do I read a video from a webcam with OpenCV?