如何将 Stripe 支付网关与 Django Oscar 集成?
How to integrate Stripe payments gateway with Django Oscar?
我正在尝试将 Stripe 支付网关集成到 Django oscar,用于销售杂货等实体商品的电子商务网站 online.I 使用 python 3.6.3、Django 2.0、Django-oscar 1.6,条纹 1.82.2.
方法一:
所以我在 django-oscar 组中关注了这个 link:
我已经注册了一个 stripe 帐户并使用我的可发布密钥和测试密钥来配置 stripe.The 问题是,当我尝试使用标签 "Pay with Card" 提供的按钮付款时,它收集我的卡信息,然后当我点击按钮时,它显示 "Some money will be debited from the card" 如下图所示:
Image of Preview page
然后在我点击下订单按钮后,它显示了这个:
Image of confirmation page
虽然我已经用我的卡付款了。
我猜 oscar 似乎不知道付款已经通过 stripe 完成了?但我不确定如何解决这个问题。
方法二:
我尝试使用 dj-stripe,在此处找到:
https://github.com/dj-stripe/dj-stripe
但我阅读了关于 https://dj-stripe.readthedocs.io/en/stable-1.0/ 的整个文档,似乎我只能将它用于需要订阅的产品,我的不需要订阅并且 dj-stripe 的文档不完整.
我尝试使用官方的 django-oscar 存储库,link 在这里:
https://github.com/django-oscar/django-oscar-stripe
,这个存储库已有五年历史了,我认为它与我的 Django oscar 版本不兼容。
方法三:
我尝试使用 stripe.js 和元素并创建我的表单来接受卡片:
< script src = "https://js.stripe.com/v3/" > < /script> <
script >
var stripe = Stripe('your_stripe_publishable_key');
var elements = stripe.elements();
// Custom styling can be passed to options when creating an Element.
var style = {
base: {
color: '#32325d',
lineHeight: '18px',
fontFamily: '"Helvetica Neue", Helvetica, sans-serif',
fontSmoothing: 'antialiased',
fontSize: '20px',
'::placeholder': {
color: '#aab7c4'
}
},
invalid: {
color: '#fa755a',
iconColor: '#fa755a'
}
};
// Create an instance of the card Element.
var card = elements.create('card', {
style: style
});
// Add an instance of the card Element into the `card-element` <div>.
card.mount('#card-element');
card.addEventListener('change', function(event) {
var displayError = document.getElementById('card-errors');
if (event.error) {
displayError.textContent = event.error.message;
} else {
displayError.textContent = '';
}
});
// Create a source or display an error when the form is submitted.
var form = document.getElementById('payment-form');
form.addEventListener('submit', function(event) {
event.preventDefault();
stripe.createSource(card).then(function(result) {
if (result.error) {
// Inform the user if there was an error
var errorElement = document.getElementById('card-errors');
errorElement.textContent = result.error.message;
} else {
// Send the source to your server
stripeSourceHandler(result.source);
}
});
});
function stripeSourceHandler(source) {
// Insert the source ID into the form so it gets submitted to the server
var form = document.getElementById('payment-form');
var hiddenInput = document.createElement('input');
var hiddenAmount = document.createElement('input');
hiddenInput.setAttribute('type', 'hidden');
hiddenInput.setAttribute('name', 'stripeSource');
hiddenInput.setAttribute('value', source.id);
form.appendChild(hiddenInput);
hiddenAmount.setAttribute('type', 'hidden');
hiddenAmount.setAttribute('name', 'amt');
hiddenAmount.setAttribute('value', '{{ order_total.incl_tax|safe }}');
form.appendChild(hiddenAmount);
// Submit the form
form.submit();
}
<
/script>
<form action="/charge/" method="post" id="payment-form">
{% csrf_token % }
<div class="form-row">
<label for="card-element">
Credit or debit card
</label>
<div id="card-element">
<!-- A Stripe Element will be inserted here. -->
</div>
<!-- Used to display Element errors. -->
<div id="card-errors" role="alert"></div>
</div>
<br>
<!--<hr>-->
<button class="btn btn-primary">Pay Now</button>
</form>
在我的 python views.py 文件中,我创建了条纹电荷和来源。
@csrf_exempt
def stripe_payment(request):
user = request.user
source_id = request.POST.get("stripeSource", None)
amount = request.POST.get("amt", None)
stripe.api_key = "your_test_key"
customer = stripe.Customer.create(
email=email,
source=source_id,
)
# print("Customer ID: ", customer['id'])
amt = float(amount) * 100
# print("Amount:", int(amt))
int_amt = int(amt)
charge = stripe.Charge.create(
amount=int_amt,
currency='cad',
customer=customer['id'],
source=source_id,
)
return HttpResponseRedirect("/checkout/preview/")
然后我在 stripe 仪表板中创建了一个 webhook 并将其 link 编辑到我的本地 url ,每次通过 web-hook 发送来自 stripe 的响应时,这个 url被击中。
@csrf_exempt
def demo_checkout(request):
# Retrieve the request's body and parse it as JSON:
event_json = json.dumps(json.loads(request.body), indent=4)
# event_json = json.loads(request.body)
# Do something with event_json
print("Json event:", event_json)
return HttpResponse(status=200)
截至目前,我可以从我的仪表板跟踪各种事件或日志,以及创建客户、收费和发送响应的网络挂钩等事件,但我无法弄清楚我怎样才能完成付款,这样 Django-oscar 也可以知道付款已完成并且不显示 "No payment was required":
Thank you page
我已经尝试了所有这些方法,但仍然没有 work.I 我愿意使用任何其他建议的方法或对我在解释的任何方法中所做的改进 far.I 是 django-oscar 的新手,一些代码和一些解释的答案会很有帮助。
当您在 Stripe 仪表板(“开发者 > 日志”section)中查看日志时,您是否看到创建令牌、客户和费用的请求?这些请求成功了吗?您看到任何错误了吗?
关于 Django Oscar,我不熟悉它,所以不确定下面是否有帮助。
但我查看了 Django Oscar code,当订单记录没有添加任何来源时,thank_you
模板似乎显示了“无需付款”消息到它(即 order.sources.all
返回空):
所以可能是在您的 handle_payment
代码中,您可能没有按照您列出的建议 in this recipe or the email thread 正确地将源记录添加到当前订单记录。
为了进一步调试,我建议:
检查您的 Stripe 仪表板中的日志,看看您是否正确创建了费用。
查询源模型并检查是否有任何记录与特定订单 ID 关联
在 handle_payment
中的代码中添加一些额外的调试 (log/print) 语句,以检查它是否被调用以及是否按应有的方式创建源记录:
我找到了一种将 Stripe 与 Django Oscar 集成的方法,这是最简单的方法之一。
先从这里创建一个stripe账户:https://stripe.com/,你会得到一个publishable key和一个secret key,你可以在Developers下登录stripe dashboard后查看它们> API键。
在你的 django oscar 代码端。从 oscar 分叉结帐应用程序,将其添加到 INSTALLED_APPS+=get_core_apps(['checkout'])。要了解如何分叉应用程序,您可以按照此 link 从文档:https://django-oscar.readthedocs.io/en/latest/topics/customisation.html#fork-oscar-app
在结帐下创建一个名为 facade.py 的文件,将仪表板中的密钥复制到 settings.py 文件中,然后按照此 link 中的建议进行其他更改: Stripe payment gateway integration 在 django oscar 组上,它的标题恰好是 wrong.Just 跟随整个页面就完成了。
我正在尝试将 Stripe 支付网关集成到 Django oscar,用于销售杂货等实体商品的电子商务网站 online.I 使用 python 3.6.3、Django 2.0、Django-oscar 1.6,条纹 1.82.2.
方法一:
所以我在 django-oscar 组中关注了这个 link:
我已经注册了一个 stripe 帐户并使用我的可发布密钥和测试密钥来配置 stripe.The 问题是,当我尝试使用标签 "Pay with Card" 提供的按钮付款时,它收集我的卡信息,然后当我点击按钮时,它显示 "Some money will be debited from the card" 如下图所示: Image of Preview page
然后在我点击下订单按钮后,它显示了这个: Image of confirmation page
虽然我已经用我的卡付款了。 我猜 oscar 似乎不知道付款已经通过 stripe 完成了?但我不确定如何解决这个问题。
方法二: 我尝试使用 dj-stripe,在此处找到:
https://github.com/dj-stripe/dj-stripe
但我阅读了关于 https://dj-stripe.readthedocs.io/en/stable-1.0/ 的整个文档,似乎我只能将它用于需要订阅的产品,我的不需要订阅并且 dj-stripe 的文档不完整.
我尝试使用官方的 django-oscar 存储库,link 在这里: https://github.com/django-oscar/django-oscar-stripe ,这个存储库已有五年历史了,我认为它与我的 Django oscar 版本不兼容。
方法三: 我尝试使用 stripe.js 和元素并创建我的表单来接受卡片:
< script src = "https://js.stripe.com/v3/" > < /script> <
script >
var stripe = Stripe('your_stripe_publishable_key');
var elements = stripe.elements();
// Custom styling can be passed to options when creating an Element.
var style = {
base: {
color: '#32325d',
lineHeight: '18px',
fontFamily: '"Helvetica Neue", Helvetica, sans-serif',
fontSmoothing: 'antialiased',
fontSize: '20px',
'::placeholder': {
color: '#aab7c4'
}
},
invalid: {
color: '#fa755a',
iconColor: '#fa755a'
}
};
// Create an instance of the card Element.
var card = elements.create('card', {
style: style
});
// Add an instance of the card Element into the `card-element` <div>.
card.mount('#card-element');
card.addEventListener('change', function(event) {
var displayError = document.getElementById('card-errors');
if (event.error) {
displayError.textContent = event.error.message;
} else {
displayError.textContent = '';
}
});
// Create a source or display an error when the form is submitted.
var form = document.getElementById('payment-form');
form.addEventListener('submit', function(event) {
event.preventDefault();
stripe.createSource(card).then(function(result) {
if (result.error) {
// Inform the user if there was an error
var errorElement = document.getElementById('card-errors');
errorElement.textContent = result.error.message;
} else {
// Send the source to your server
stripeSourceHandler(result.source);
}
});
});
function stripeSourceHandler(source) {
// Insert the source ID into the form so it gets submitted to the server
var form = document.getElementById('payment-form');
var hiddenInput = document.createElement('input');
var hiddenAmount = document.createElement('input');
hiddenInput.setAttribute('type', 'hidden');
hiddenInput.setAttribute('name', 'stripeSource');
hiddenInput.setAttribute('value', source.id);
form.appendChild(hiddenInput);
hiddenAmount.setAttribute('type', 'hidden');
hiddenAmount.setAttribute('name', 'amt');
hiddenAmount.setAttribute('value', '{{ order_total.incl_tax|safe }}');
form.appendChild(hiddenAmount);
// Submit the form
form.submit();
}
<
/script>
<form action="/charge/" method="post" id="payment-form">
{% csrf_token % }
<div class="form-row">
<label for="card-element">
Credit or debit card
</label>
<div id="card-element">
<!-- A Stripe Element will be inserted here. -->
</div>
<!-- Used to display Element errors. -->
<div id="card-errors" role="alert"></div>
</div>
<br>
<!--<hr>-->
<button class="btn btn-primary">Pay Now</button>
</form>
在我的 python views.py 文件中,我创建了条纹电荷和来源。
@csrf_exempt
def stripe_payment(request):
user = request.user
source_id = request.POST.get("stripeSource", None)
amount = request.POST.get("amt", None)
stripe.api_key = "your_test_key"
customer = stripe.Customer.create(
email=email,
source=source_id,
)
# print("Customer ID: ", customer['id'])
amt = float(amount) * 100
# print("Amount:", int(amt))
int_amt = int(amt)
charge = stripe.Charge.create(
amount=int_amt,
currency='cad',
customer=customer['id'],
source=source_id,
)
return HttpResponseRedirect("/checkout/preview/")
然后我在 stripe 仪表板中创建了一个 webhook 并将其 link 编辑到我的本地 url ,每次通过 web-hook 发送来自 stripe 的响应时,这个 url被击中。
@csrf_exempt
def demo_checkout(request):
# Retrieve the request's body and parse it as JSON:
event_json = json.dumps(json.loads(request.body), indent=4)
# event_json = json.loads(request.body)
# Do something with event_json
print("Json event:", event_json)
return HttpResponse(status=200)
截至目前,我可以从我的仪表板跟踪各种事件或日志,以及创建客户、收费和发送响应的网络挂钩等事件,但我无法弄清楚我怎样才能完成付款,这样 Django-oscar 也可以知道付款已完成并且不显示 "No payment was required": Thank you page
我已经尝试了所有这些方法,但仍然没有 work.I 我愿意使用任何其他建议的方法或对我在解释的任何方法中所做的改进 far.I 是 django-oscar 的新手,一些代码和一些解释的答案会很有帮助。
当您在 Stripe 仪表板(“开发者 > 日志”section)中查看日志时,您是否看到创建令牌、客户和费用的请求?这些请求成功了吗?您看到任何错误了吗?
关于 Django Oscar,我不熟悉它,所以不确定下面是否有帮助。
但我查看了 Django Oscar code,当订单记录没有添加任何来源时,thank_you
模板似乎显示了“无需付款”消息到它(即 order.sources.all
返回空):
所以可能是在您的 handle_payment
代码中,您可能没有按照您列出的建议 in this recipe or the email thread 正确地将源记录添加到当前订单记录。
为了进一步调试,我建议:
检查您的 Stripe 仪表板中的日志,看看您是否正确创建了费用。
查询源模型并检查是否有任何记录与特定订单 ID 关联
在
handle_payment
中的代码中添加一些额外的调试 (log/print) 语句,以检查它是否被调用以及是否按应有的方式创建源记录:
我找到了一种将 Stripe 与 Django Oscar 集成的方法,这是最简单的方法之一。
先从这里创建一个stripe账户:https://stripe.com/,你会得到一个publishable key和一个secret key,你可以在Developers下登录stripe dashboard后查看它们> API键。
在你的 django oscar 代码端。从 oscar 分叉结帐应用程序,将其添加到 INSTALLED_APPS+=get_core_apps(['checkout'])。要了解如何分叉应用程序,您可以按照此 link 从文档:https://django-oscar.readthedocs.io/en/latest/topics/customisation.html#fork-oscar-app
在结帐下创建一个名为 facade.py 的文件,将仪表板中的密钥复制到 settings.py 文件中,然后按照此 link 中的建议进行其他更改: Stripe payment gateway integration 在 django oscar 组上,它的标题恰好是 wrong.Just 跟随整个页面就完成了。