是否有Ruby gem使用Google Images API?

Gol*_*les 8 ruby gem ruby-on-rails-3

我需要在我的Rails应用程序上与Google Images API对话.有没有Ruby宝石可以做到这一点?我发现了一个使用过时的API的旧gem.

ban*_*tic 8

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

您可以通过指定限制这种图像搜索imagesearchType参数,如下所示:

 results = GoogleCustomSearchApi.search("poker", {"searchType" => "image"})
Run Code Online (Sandbox Code Playgroud)