Apple Pay - “付款未完成” - 使用 Stripe

And*_*rdi 5 payment node.js ios express stripe-payments

我正在使用条纹“付款请求按钮”为我的网站实施 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>
Run Code Online (Sandbox Code Playgroud)

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 { 

}
});
});
Run Code Online (Sandbox Code Playgroud)

And*_*rdi 4

终于解决了这个问题。这最终是我的 bodyParser 设置的问题。这解释了为什么令牌是空的但被传递。我忽略了包含app.use(bodyParser.json());以下...

app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());
Run Code Online (Sandbox Code Playgroud)