1

rbing gemがインストールされた状態でRails 4を実行しています(バージョン1.1.0)

require 'rbing'
bing = RBing.new("YOURAPPID")

rsp = bing.web("ruby", :site => "github.com")
puts rsp.web.results[0].url

ここの例のように: https://github.com/mikedemers/rbing

実行すると、次のエラーが表示されます。

# RBing::ResponseData:0x007f42500bb190 の未定義メソッド「web」

4

1 に答える 1

1

代わりにGoogleを使用することになりました

client = Google::APIClient.new(:authorization => nil)

google_search = client.discovered_api('customsearch', 'v1')

google_result = client.execute(
        :api_method => google_search.cse.list,
        :authenticated => false,
        :parameters => {
          'q' => query,
          'key' => key, # your key received from google
          'siteSearch' => query_params[1],
          'cx' => cx, # your cx code received from google
          'num' => 1
        }
      )
于 2014-12-05T19:19:29.313 に答える