我正在使用条带进行付款转帐,但我收到了无法解决的错误。
我收到的错误是:
Stripe :: InvalidRequestError :(状态400)(请求req_98Vxx1rihtv4Gi)Stripe帐户中的资金不足。在测试模式下,您可以通过创建4000 0000 0000 0077作为卡号来收取可用余额(绕过待定余额)的资金。您可以使用/ v1 / balance端点查看条带余额(有关详细信息,请参阅stripe.com/docs/api#balance)。
这是我的控制器代码:
@offer_transaction = OfferTransaction.find(params[:id])
@user = User.find(@offer_transaction.offer_accepted_by)
if @user.role_id == 2
if @user.stripe_connect_account_id.present?
puts @offer_transaction.id
@pay = Stripe::Transfer.create({
amount: (@offer_transaction.amount).floor,
currency: 'usd',
destination: @offer_transaction.transfer_payment_in,
description: 'Transfer for test@example.com'},
{:stripe_account => @user.stripe_connect_account_id})