如何在我的申请中使用stripe
付款方式?
我已将gem 'stripe'
添加到我的Gemfile中并且我已经运行bundle install
,但现在我对开发流程感到困惑。
答案 0 :(得分:0)
使用Strip payment API的一般要点如下: https://stripe.com/docs/quickstart
我如何在我的应用中使用它:
# Create user in strip. It returns `stripe_customer_id`
Stripe::Customer.create
#or retrieve user
Stripe::Customer.retrieve
之后你可以收费:
Stripe::Charge.create(
:amount => amount,
:currency => currency,
:customer => stripe_customer_id, #It was received from create customer
:description => description)
您可以找到更多详细信息this
答案 1 :(得分:-1)
如果您在rails上使用Ruby,只需添加到您的Gemfile:
gem 'stripe'
然后在命令行上运行:
bundle install