【发布时间】:2014-04-06 15:35:29
【问题描述】:
我使用的是免费开发帐户、rails 4.0、ruby v2、heroku toolbelt、redis-server 和 postgres 9
我有一个 Rails 应用程序,它一直在加载从 2013 年 8 月到 2014 年 2 月的交易。
3 月份应用加载回 9 月,看到我们硬编码了 7 个月,所以我切换到加载 9 个月。 cc 银行测试账户和美国个人银行账户的交易不会在 9 月之前加载。它将加载更短的时间段(3 个月),但超过 7 个月的回调仅加载 7 个月。
我正在打的主要电话
def services
IntuitIdsAggcat::Client::Services
end
def fetch_transactions
@transactions = services.get_account_transactions(
account.user.intuit_id, account.intuit_id, 9.months.ago
)
end
您可以使用免费开发帐户查看多长时间的交易是否有限制?
感谢您的宝贵时间
【问题讨论】:
标签: sql ruby-on-rails transactions custom-exceptions customer-account-data-api