gpt4 book ai didi

ruby-on-rails - Geocoder gem 是否与谷歌 API key 一起使用?

转载 作者:行者123 更新时间:2023-12-03 14:18:58 28 4
gpt4 key购买 nike

我正在为我的项目使用 ruby​​ geocoder gem,随着项目的发展,我开始考虑连接到 Google API key 。将其添加到项目后:

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 key 吗?主要是,我想留意每日查询的数量,以避免超出限制。

最佳答案

Geocoder 可以很好地与他们的 Map API 的免费层一起工作。然而,为了让它工作,我必须使用这个页面注册一个 key 具体 .

https://console.developers.google.com/flows/enableapi?apiid=geocoding_backend&keyType=SERVER_SIDE

并设置配置

# config/initializers/geocoder.rb
Geocoder.configure(
api_key: 'KEY_HERE',
use_https: true
)

关于ruby-on-rails - Geocoder gem 是否与谷歌 API key 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11750370/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com