在其他一些计划中,我有一个免费计划。当用户使用免费计划注册时,我在RECURLY中创建了没有订阅和账单信息的帐户。当用户尝试升级到某些付费计划时。我创建一个订阅。但是通过订阅,我还需要在 1 Request 中设置 Billing 帐户令牌,我如何在 Recurly 中使用Ruby on rails做到这一点。
if account.present && subscription.blank?
recurly_result =subscription.update_attributes(subscription attributes & Account billing token)
end