我们无法完成此操作。尝试不同的付款方式或联系我们。 [OR_CCREU_02]

问题描述 投票:0回答:0

我从 google pay docs 实施 google pay,当我在测试环境中测试它时,我收到一个错误

“我们无法完成此操作。尝试不同的付款方式或 联系我们。 [OR_CCREU_02]“

我花了将近 4 天的时间来解决这个错误,但对我没有任何帮助。 任何人都知道如何解决此错误并为测试环境测试谷歌支付交易

image 1 这是我的 json:

{
    "apiVersion": 2,
    "apiVersionMinor": 0,
    "allowedPaymentMethods": [
        {
            "type": "CARD",
            "parameters": {
                "allowedAuthMethods": [
                    "PAN_ONLY",
                    "CRYPTOGRAM_3DS"
                ],
                "allowedCardNetworks": [
                    "AMEX",
                    "DISCOVER",
                    "JCB",
                    "MASTERCARD",
                    "VISA"
                ],
                "billingAddressRequired": true,
                "billingAddressParameters": {
                    "format": "FULL"
                }
            },
            "tokenizationSpecification": {
                "type": "PAYMENT_GATEWAY",
                "parameters": {
                    "gateway": "example",
                    "gatewayMerchantId": "DCR2DFGGHP7EJS"
                }
            }
        }
    ],
    "transactionInfo": {
        "totalPrice": "1000",
        "totalPriceStatus": "FINAL",
        "countryCode": "US",
        "currencyCode": "USD"
    },
    "merchantInfo": {
        "merchantName": "example"
    },
    "shippingAddressParameters": {
        "phoneNumberRequired": false,
        "allowedCountryCodes": [
            "US",
            "GB"
        ]
    },
    "shippingAddressRequired": true
}

我遵循了谷歌文档,但对我没有任何帮助

已编辑

image3

image 4

image5

kotlin payment-gateway google-pay
© www.soinside.com 2019 - 2024. All rights reserved.