2012-02-07 19 views
6

我需要在Rails應用程序上與Google Images API交談。有沒有Ruby的寶石來做到這一點?我發現了一個使用棄用API的老寶石。是否有使用Google Images API的Ruby gem?

+0

這是您發現的寶石:http://rubygems.org/寶石/ google_image_api – ScottJShea 2012-02-20 11:11:37

+0

是的,就是那個。 – Goles 2012-02-20 12:58:28

回答

5

有一個名爲google_custom_search_api使用較新的谷歌定製搜索API的寶石: https://github.com/wiseleyb/google_custom_search_api

您可以通過爲searchType參數指定image限制這種圖像搜索,就像這樣:

results = GoogleCustomSearchApi.search("poker", {"searchType" => "image"}) 
相關問題