我想知道關於Stripe的一些澄清和幫助。條紋連接和託管帳戶
基本上,我有以下幾點:
//get the card token from the stripe request
$customerTok = request('stripeToken');
//create the customer with this token
$customer = \Stripe\Customer::create(array(
"email" => \Auth::user()->email,
"source" => $customerTok,
));
凡customerTok是Stripe.js通過銀行令牌(輸入自己的卡號,CVC和EXP日期),和我創建的客戶我條紋儀表板。
$cardTok = \Stripe\Token::create(array(
"card"=>$customer->sources->retrieve(default_source),
));`
然後我爲他們的卡抓取一個令牌? (我認爲這是錯誤的,但這樣的原則?)
我現在需要讓他們成爲連接管理帳戶(我需要用戶能夠支付對方,像eBay)
$account = \Stripe\Account::create(
array(
"country" => "GB",
"managed" => true,
"external_account"=>$customer->id,
));
顯然,這不是生產就緒代碼,我只是想了解流程,如果我正確理解這一點..任何人都可以解釋爲什麼這不是現在正在工作,我出了什麼問題?
感謝,
謝謝你這個Ywain,我會看看:) – iLC