我安装了 bitly gem,并在我的 ApplicationController 中设置它以使用版本 3 的 API,但它抛出了上述错误。这是我的 application_controller.rb 的开头
class ApplicationController < ActionController::Base
protect_from_forgery
Bitly.use_api_version_3
before_filter { @cart = find_or_create_cart_from_session }
before_filter { @bitly = Bitly.new('myusername', 'XXXXXX_API_KEY_XXXXX') }