2

我正在使用两个 API:Cloudinary 和 Google Maps Geocoding API,它们都可以毫无问题地进行开发。但是在产品上,谷歌地图不起作用,因为“谷歌地图 API 警告:NoApiKeys”。

heroku config:set GOOGLE_API_SERVER_KEY=AIza*****************************4

工作正常,我在 heroku 的仪表板上找到了我的两个 API 密钥,但是:

figaro heroku:set -e production
Could not find command "heroku:set"

与:

figaro heroku:set
Could not find command "heroku:set"

我想我的问题出在 gem figaro 上。我的宝石文件:

#figaro
gem 'figaro', '~> 1.1', '>= 1.1.1'

应用程序.yml

# Add configuration values here, as shown below.
#
# pusher_app_id: "2954"
# pusher_key: 7381a978f7dd7f9a1117
# pusher_secret: abdc3b896a0ffb85d373
# stripe_api_key: sk_test_2J0l093xOyW72XUYJHE4Dv2r
# stripe_publishable_key: pk_test_ro9jV5SNwGb1yYlQfzG17LHK
#
# production:
#   stripe_api_key: sk_live_EeHnL644i6zo4Iyq4v1KdV9H
#   stripe_publishable_key: pk_live_9lcthxpSIHbGwmdO941O1XVU

CLOUDINARY_URL: "cloudinary://6714********************************t"
GOOGLE_API_SERVER_KEY: "AIz***********************************4"

当我输入:

bundle exec figaro heroku:set

我的一切都很好(我猜):

Setting CLOUDINARY_URL, GOOGLE_API_SERVER_KEY and restarting ⬢ coin-de-paris... done, v27
CLOUDINARY_URL:        cloudinary://671**********************st
GOOGLE_API_SERVER_KEY: AI**********************4

我是开发界的新手,如果答案很简单,我很抱歉 :) 感谢您的宝贵时间!

编辑:我尝试了几个版本的 figaro,例如:

gem 'figaro', '~> 1.1', '>= 1.1.1'
gem 'figaro', github: 'sealocal/figaro'
gem 'figaro', '>= 1.0.0.rc1'
gem 'figaro'

然后 :

bundle install
bundle binstubs figaro
figaro install
spring stop

但是当我运行时:

figaro heroku:set -e production

figaro heroku:set

我有 :

Could not find command "heroku:set".

版本:

ruby '2.3.5'
gem 'rails', '~> 5.1.4'
4

1 回答 1

0

好的,我发现这是我的钥匙有问题。我在谷歌控制台中生成了另一个,现在很好。

于 2018-01-15T16:19:28.607 回答