如何使用Rails应用程序从Bigcommerce检索数据?

时间:2015-01-22 23:06:53

标签: ruby-on-rails ruby-on-rails-3 ruby-on-rails-4 integration bigcommerce

我正在尝试将Rails应用程序与Bigcommerce API连接,但我不能,也不知道为什么。

我做了下一个:

  1. 将'gem bigcommerce'添加到我的gem文件
  2. 执行'bundle install'
  3. 将代码置于ApplicationController索引

    def index
    api = Bigcommerce::Api.new({
                                   :store_url => "http://mystore.mybigcommerce.com",
                                   :username  => "user",
                                   :api_key   => "3a0ce...[my api key]"
                               })
    puts api.time
    

  4. 停止并启动Rails服务器

  5. 我收到一条错误,说'#
  6. 的'未定义方法'时间'

    enter image description here

    是否有任何机构可以告诉我我的错误以及如何在Rails应用中配置Bigcommerce?我找到了官方documentation,但对我来说不是很清楚。< / p>

    提前致谢

1 个答案:

答案 0 :(得分:0)

您是否在ApplicationController文件的开头添加了必需文件?

 require 'bigcommerce'