我正在使用条纹“付款请求按钮”为我的网站实施Apple Pay。在条纹方面,一切都很好。正如我在Stripe日志中验证的那样,令牌通过了正确性传递。 https://stripe.com/docs/stripe-js/elements/payment-request-button
但是,每次我尝试完成测试付款时,都会从Apple Pay收到错误消息:“付款未完成”。
这使我陷入困境,我不确定如何调试或修复。有任何想法吗?
我得到一个未定义的令牌
这是错误:
我的设置:
前部结束:
<script src="https://js.stripe.com/v3/"></script>
<div id="payment-request-button">
<!-- A Stripe Element will be inserted here. -->
</div>
<script>
var stripe = Stripe('pk_test_xxxxx');
var paymentRequest = stripe.paymentRequest({
country: 'US',
currency: 'usd',
total: {
label: 'JobQuiz',
amount: 999,
},
requestPayerName: true,
requestPayerEmail: false,
});
var elements = stripe.elements();
var prButton = elements.create('paymentRequestButton', {
paymentRequest: paymentRequest,
});
// Check the availability of the Payment Request API first.
paymentRequest.canMakePayment().then(function(result) {
if (result) {
prButton.mount('#payment-request-button');
} else {
document.getElementById('payment-request-button').style.display = 'none';
}
});
paymentRequest.on('token', function(ev) {
// Send the token to your server to charge it!
fetch('/apple-pay', {
method: 'POST',
body: JSON.stringify({token: ev.token.id}),
headers: {'content-type': 'application/json'},
})
.then(function(response) {
if (response.ok) {
// Report to the browser that the payment was successful, prompting
// it to close the browser payment interface.
ev.complete('success');
} else {
// Report to the browser that the payment failed, prompting it to
// re-show the payment interface, or show an error message and close
// the payment interface.
ev.complete('fail');
}
});
});
</script>
app.js中的服务器端代码
app.post('/apple-pay', function(req, res, next) {
// 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
var stripe = require("stripe")("sk_test_xxxxxx");
// Token is created using Checkout or Elements!
// Get the payment token ID submitted by the form:
const token = req.body.token; // Using Express
const charge = stripe.charges.create({
amount: 999,
currency: 'usd',
description: 'Example charge',
source: token,
}, function(err, charge){
if (err){
} else {
}
});
});
答案 0 :(得分:3)
最后解决了这个问题。最终我的bodyParser设置出现问题。这解释了为什么令牌虽然为空但仍被传递。我忽略了包含 app.use(bodyParser.json());下面...
app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());