2

我有一個要求,我有產品列表,每個產品屬於各種賣家,現在用戶可以登錄到應用程序和購買產品和金額將被轉移到相應的賣家條紋賬戶。我正在努力處理這個問題。如何匯款到特定的條形賬戶?

我到目前爲止已經允許賣家註冊並連接他的stripe賬戶,如果他已經有一個或註冊並獲得代碼迴應用程序,但我也想知道如何獲得access token的代碼是收到了鐵軌,我想知道用戶如何通過卡將款項發送給相應的賣家。

請幫我

回答

0

這是投機(我不知道,如果你能做到這一點與目前的條紋API):

不能分配賣家的條紋訪問令牌的條紋實例?

看起來條紋證書是set in an initializer,這通常意味着它們不能被更改;儘管我可能會猜測你可以通過調用Stripe對象的新實例或dynamically setting the seller details

def create 
    # Amount in cents 
    @amount = 500 

    seller = User.find_by id: params[:product_id] 
    Stripe.api_key = seller.stripe_api 

    customer = Stripe::Customer.create(
    :email => '[email protected]', 
    :card => params[:stripeToken] 
) 

    charge = Stripe::Charge.create(
    :customer => customer.id, 
    :amount  => @amount, 
    :description => 'Rails Stripe customer', 
    :currency => 'usd' 
) 

rescue Stripe::CardError => e 
    flash[:error] = e.message 
    redirect_to charges_path 
end 
相關問題