6

ApplePay canMakePaymentsWithActiveCard Promise 在 Mac Safari 上返回 false,但在 iPhone Safari 上返回 true。canMakePayments在两者上都返回 true。我正在使用带有 Apple 提供的测试信用卡的沙盒 Apple 开发人员帐户。知道为什么canMakePaymentsWithActiveCard在 Mac Safari 上返回 false 吗?

if (window.ApplePaySession) {
    // I'm not posting actual merchantIdentifier due to security reasons
    var merchantIdentifier = 'my unique identifier';
    var promise = ApplePaySession.canMakePaymentsWithActiveCard(merchantIdentifier);
    promise.then(function (canMakePayments) {
        if (canMakePayments)
        // For some reason false on Mac Safari
    }); 
}
4

1 回答 1

0

对我来说,问题是钱包中的测试信用卡没有设置账单地址。似乎需要帐单地址才能在网络上被认为是活跃和可用的,尽管我找不到表明这一点的文档。

于 2020-06-10T17:31:15.080 回答