我创建了一个Flask简单表单并在Stripe.com上创建了一个计划,它运行得很好。我可以订阅计划开发模式,它反映了对Stripe的付款。现在我需要与Stripe站点实时同步以获得计划到期和其他事件。据我所知,为了达到目的,我需要创建一个回调函数来获取条带id并将其保存到数据库中。我宁愿将它保存到数据库而不是会话。请告知如何创建回调路由并将值从JSON api保存到数据库。以下是我订阅的代码,我需要显示过期和其他事件。
def yearly_charged():
#Need to save customer stripe ID to DB model
amount = 1450
customer = stripe.Customer.create(
email='test@test.com',
source=request.form['stripeToken']
)
try:
charge = stripe.Charge.create(
customer=customer.id,
capture='true',
amount=amount,
currency='usd',
description='standard',
)
data="$" + str(float(amount) / 100) + " " + charge.currency.upper()
except stripe.error.CardError as e:
# The card has been declined
body = e.json_body
err = body['error']
print
"Status is: %s" % e.http_status
print
"Type is: %s" % err['type']
print
"Code is: %s" % err['code']
print
"Message is: %s" % err['message']
return render_template('/profile/charge.html', data=data, charge=charge)
模板:
<form action="/charged" method="post">
<div class="form-group">
<label for="email">Amount is 14.95 USD </label>
<script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="{{ key }}"
data-description="Yearly recurring billing"
data-name="yearly"
data-amount="1495"
data-image="https://stripe.com/img/documentation/checkout/marketplace.png"
data-locale="auto">
</script>
</div>
</form>
型号:
class Students(db.Model):
__tablename__='students'
.......
student_strip_id = db.Column(db.String(45))
.......
需要帮助设计以下功能,以便我可以设置方法以正确的方式获取响应以保存在db中。
@app.route('/oauth/callback/, methods=['POST'])
# This is where I guess I have to define callback function to get API data
return redirect('/')
此处的目标是从条带API对象中提取Stripe id,expiry事件和其他订阅通知,以便在Flask Model中保存。
答案 0 :(得分:1)
首先,请注意您共享的代码只是creates a one-off charge,而不是订阅(即经常性费用)。如果您想自动创建经常性费用,则应查看documentation for subscriptions。
如果我正确理解您的问题,您希望使用webhooks通知订阅付款成功。系统会为每次成功付款创建invoice.payment_succeeded
个活动。 (参见here了解有关订阅事件的更多信息。)
使用Flask,webhook处理程序看起来与此类似:
import json
import stripe
from flask import Flask, request
app = Flask(__name__)
@app.route('/webhook', methods=['POST'])
def webhook():
event_json = json.loads(request.data)
event = stripe.Event.retrieve(event_json['id'])
if event.type == 'invoice.payment_succeeded':
invoice = event.data.object
# Do something with invoice