我创建了一个客户,并使用金额而不是计划向该客户收费。我检查了他们的文档,但不知道该怎么做。任何人都可以帮我解决下面的代码,
// create customer
$customer = Stripe_Customer::create(array(
"card" => $_POST['stripeToken'],
"description" => "This is testing mode",
"email" => "test@mail.com",
));
// Charge the Customer
Stripe_Charge::create(array(
"amount" => 3000,
"currency" => "usd",
"customer" => $customer->id)
);
答案 0 :(得分:0)
您的代码看起来很好,并按照此处列出的内容进行操作:
https://stripe.com/docs/tutorials/charges
您有特定问题或问题吗?
最佳, 拉里
PS我在Stripe的支持工作。