0

我正在尝试使用 Braintree 设置 Apple Pay。

我一直在遵循这些说明,但无济于事 - https://developers.braintreepayments.com/guides/apple-pay/client-side/javascript/v3

我已经安装了最新的库,将我的代码部署到了一个安全的 https 端点。我在 Mac OS 10.13.4 上使用 Safari 11.1 我在 Braintree 网站上将我的网址列入白名单,并且我在 mac 上以沙盒用户身份登录

不管我做什么 - 以下代码返回它不支持苹果支付

if (window.ApplePaySession && ApplePaySession.canMakePayments()) {
    console.log('Device does support apple pay');
}else {
   console.log('Device DOESNT support apple pay');
}

我还需要做什么才能让 Apple Pay 正常工作吗?

谢谢达米安

4

1 回答 1

0

也许你应该试试这个:

if (!window.ApplePaySession){
  console.log('This device does not support Apple Pay');
}

if (!ApplePaySession.canMakePayments()) {
  console.log('This device is capable of making Apple Pay payments');
}
于 2018-05-10T08:15:34.927 回答