1
據我所知,當我想要拿錢的時候,我把它們從客戶對象那裏拿走,當我想要給錢的時候,我指示他們去考慮對象。
我通過2個不同的令牌如何將客戶連接到帳戶?
curl https://api.stripe.com/v1/customers \
-u sk_test_BQokikJOvBiI2HlWgH4olfQ2: \
-d description="Customer for [email protected]" \
-d source=tok_189gHx2eZvKYlo2CzA1hApdo
創建customer_1和customer_2然後我通過
curl https://api.stripe.com/v1/accounts \
-u sk_test_qoHbcUFCbOA41F3BRm2OlgdT: \
-d type=standard \
-d country=US \
-d email="[email protected]"
ACCOUNT_1創建和account_2現在customer_2從customer_1 買東西,我必須指定customer_2.customer_id和customer_1。 account_id 因此被髮送到account_1,但我不知道如何將customer_1和account_1鏈接在一起
我想我回答了你的IRC但爲了以防萬一:支付,每個客戶需要自己條紋帳號:https://stripe.com/docs/checkout#integration-custom – koopajah