是否有Ruby gem使用Google Images API?

前端之家收集整理的这篇文章主要介绍了是否有Ruby gem使用Google Images API?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在我的Rails应用程序上与Google Images API对话.有没有 Ruby宝石这样做?我找到了一个使用过时的API的旧gem.

解决方法

有一个名为google_custom_search_api的宝石,它使用较新的Google自定义搜索API:
https://github.com/wiseleyb/google_custom_search_api

您可以通过为searchType参数指定image来将其限制为图像搜索,如下所示:

results = GoogleCustomSearchApi.search("poker",{"searchType" => "image"})
原文链接:https://www.f2er.com/ruby/269907.html

猜你在找的Ruby相关文章