条纹电荷创造数量是动态的
Stripe charge create amount to be dynamic
我正在尝试实现条带支付,我知道条带要求您设置两次金额。一次在结帐处,另一个在服务器端。
我正在使用 web2py 作为我的框架。
所以我的问题是如何使它们匹配?
我通过 JS 使服务器端动态化,但我正在努力让服务器端拥有相同的数量。
# Set your secret key: remember to change this to your live secret key in production
# See your keys here https://dashboard.stripe.com/account/apikeys
stripe.api_key = "sk_test_BQokikJOvBiI2HlWgH4olfQ2"
# Get the credit card details submitted by the form
token = request.POST['stripeToken']
# Create the charge on Stripe's servers - this will charge the user's card
try:
charge = stripe.Charge.create(
amount=1000, # how to make this portion match the check out amount
currency="usd",
source=token,
description="Example charge"
)
except stripe.error.CardError, e:
# The card has been declined
pass
是否可以获取更多信息?
data-amount
和 data-currency
签出 configuration options 仅用于显示目的。它们与实际收费的金额和币种无关。
要让您的用户自己指定金额,您可以在表单中添加一个 amount
字段,该字段将与 "normal" 结帐 parameters 一起发送(stripeToken
、stripeEmail
、等等)。
这里有一个简单的 JSFiddle 来说明:https://jsfiddle.net/ywain/g2ufa8xr/
服务器端,您需要做的就是从 POST 参数中获取金额:
try:
charge = stripe.Charge.create(
amount=request.POST['amount']
# ...
当然,在真实场景中,您应该验证 amount
字段,包括客户端和服务器端。至少,您要确保它是:
- 一个严格的正数值
- 高于 minimum charge amount
- 低于您的应用程序的合理最大值
我正在尝试实现条带支付,我知道条带要求您设置两次金额。一次在结帐处,另一个在服务器端。
我正在使用 web2py 作为我的框架。
所以我的问题是如何使它们匹配?
我通过 JS 使服务器端动态化,但我正在努力让服务器端拥有相同的数量。
# Set your secret key: remember to change this to your live secret key in production
# See your keys here https://dashboard.stripe.com/account/apikeys
stripe.api_key = "sk_test_BQokikJOvBiI2HlWgH4olfQ2"
# Get the credit card details submitted by the form
token = request.POST['stripeToken']
# Create the charge on Stripe's servers - this will charge the user's card
try:
charge = stripe.Charge.create(
amount=1000, # how to make this portion match the check out amount
currency="usd",
source=token,
description="Example charge"
)
except stripe.error.CardError, e:
# The card has been declined
pass
是否可以获取更多信息?
data-amount
和 data-currency
签出 configuration options 仅用于显示目的。它们与实际收费的金额和币种无关。
要让您的用户自己指定金额,您可以在表单中添加一个 amount
字段,该字段将与 "normal" 结帐 parameters 一起发送(stripeToken
、stripeEmail
、等等)。
这里有一个简单的 JSFiddle 来说明:https://jsfiddle.net/ywain/g2ufa8xr/
服务器端,您需要做的就是从 POST 参数中获取金额:
try:
charge = stripe.Charge.create(
amount=request.POST['amount']
# ...
当然,在真实场景中,您应该验证 amount
字段,包括客户端和服务器端。至少,您要确保它是:
- 一个严格的正数值
- 高于 minimum charge amount
- 低于您的应用程序的合理最大值