我正在为我的项目使用 ruby geocoder gem,随着项目的发展,我开始考虑连接到 Google API 密钥。将其添加到项目后:
Geocoder.configure do |config|
# geocoding service (see below for supported options):
config.lookup = :google
# to use an API key:
config.api_key = 'my_key'
# geocoding service request timeout, in seconds (default 3):
config.timeout = 5
end
我收到 Google Geocoding API 错误:请求被拒绝。当我启动应用程序时。通过阅读,如果其他人选择继续使用 gem,似乎他们会切换到雅虎。我可以将 gem 配置为使用 google api 密钥吗?主要是,我想留意每日查询的数量,以避免超出限制。