我需要在哪里放置红宝石的配置代码?



我正在创建用于管理Trello相关板和列表的rails API应用程序。我决定使用"红宝石格子"宝石。

在github ruby-trello页面(https://github.com/jeremytregunna/ruby-trello(有一个配置示例。

配置如下所示:

Trello.configure do |config|
  config.developer_public_key = 'my_trello_key'
  config.member_token = 'my_trello_token'
end

我从 trello 开发人员那里得到了密钥和令牌。我已将此代码添加到我的config/application.rb类应用程序中。但是当我尝试从 Trello 获取一些数据时,我看到此错误:

Trello::ConfigurationError (Trello has not been configured to make authorized requests.)

有人可以帮忙吗?我需要把这个配置代码放在哪里?

对不起我的英语。

Rails

的惯例是把它放在config/initializers/trello.rb中,以便在 Rails 启动时拾取它。

奇怪的是,他们似乎没有在文档中提到这一点。

相关内容

  • 没有找到相关文章

最新更新