通过PayPal团购?

时间:2012-02-01 14:23:55

标签: php html paypal e-commerce

我从未使用过PayPal,因此我不知道任何可以用来使我受益的功能。我想要达到的用户体验是这样的:在您的帐户收费之前必须购买150件商品,否则您的帐户就不会有钱。我以为我可以使用PayPal bill me later。然而,这似乎更注重客户。

你知道paypal对于这项任务是否可行,如果是的话,该服务是什么?

1 个答案:

答案 0 :(得分:0)

如果您愿意离开PayPal,还有其他付款授权商会存储客户的信息,让您以后收费。

你可以看一下Stripe。 https://stripe.com/docs/tutorials/charges

# create a Customer
customer = Stripe::Customer.create(
  :card => token,
  :description => "payinguser@example.com".  
)

# At a later time, charge the Customer
Stripe::Charge.create(
    :amount => 1000, # in cents.
    :currency => "usd",
    :customer => customer.id. 
)