条纹客户正在条带服务器上成功创建,但我需要在我的服务器上进行表示,因此我创建了Customer模型,它只有user_id和stripe_id。下面是我一直在尝试的代码,但它不起作用..我认为问题在于检索特定用户的实际条带ID ..
# Create stripe customer
stripe.Customer.create()
new_customer = Customer(
user=request.user,
stripe_id=id,
)
new_customer.save()
此代码段位于用户注册视图中,并在用户通过身份验证并登录后运行
所以stripe_id字段中显示的是:
<built-in function id>