GooglePay付款问题。 OR_BIBED_10错误

发布于 2025-02-10 01:44:53 字数 1655 浏览 2 评论 0原文

当我尝试在发布应用程序中测试Google付款时,我会遇到错误:OR_BIBED_10,

我在应用程序和Google Business Console中检查了所有设置。 我写信给Google技术支持,没有收到回复。 这个问题出现在2022年3月。

我不明白需要做什么才能使它起作用:(

请帮忙。

我的付款提供商是条纹。

请求:

private GooglePaymentStripeRequest GetBaseStripeRequest() => new GooglePaymentStripeRequest
        {
            ApiVersion = 2,
            ApiVersionMinor = 0,
            MerchantInfo = new MerchantInfo
            {
                MerchantName = PartnerModule.Instance.Model.ApplicationName
            },
            AllowedStripePaymentMethods = new[]
            {
                new PaymentStripeMethod
                {
                    Type = "CARD",
                    Parameters = new PaymentParameters
                    {
                        AllowedAuthMethods = new[] { "PAN_ONLY", "CRYPTOGRAM_3DS" },
                        AllowedCardNetworks = new[] { "AMEX", "DISCOVER", "MASTERCARD", "VISA" }
                    },
                    TokenizationSpecification = new TokenizationStripeSpecification
                    {
                        Type = "PAYMENT_GATEWAY",
                        Parameters = new TokenizationSpecificationStripeParameters
                        {
                            Gateway = _gate.GatewayTitle,
                            GatewayMerchantId = (_gate as XXX.Payment.Gates.StripeGate.Stripe).PublicApiKey,
                            StripeVersion = "2.0",
                            StripeKey = (_gate as XXX.Payment.Gates.StripeGate.Stripe).PublicApiKey
                        }
                    }
                }
            }
        };

When I try to test Google Pay in my release application, I get error: OR_BIBED_10

I checked all my settings in the app and in the google business console.
I wrote to Google technical support and did not receive a response.
This problem appeared in March 2022.

I don't understand what needs to be done to make it work :(

Help, please.

My payment provider is Stripe.

Request:

private GooglePaymentStripeRequest GetBaseStripeRequest() => new GooglePaymentStripeRequest
        {
            ApiVersion = 2,
            ApiVersionMinor = 0,
            MerchantInfo = new MerchantInfo
            {
                MerchantName = PartnerModule.Instance.Model.ApplicationName
            },
            AllowedStripePaymentMethods = new[]
            {
                new PaymentStripeMethod
                {
                    Type = "CARD",
                    Parameters = new PaymentParameters
                    {
                        AllowedAuthMethods = new[] { "PAN_ONLY", "CRYPTOGRAM_3DS" },
                        AllowedCardNetworks = new[] { "AMEX", "DISCOVER", "MASTERCARD", "VISA" }
                    },
                    TokenizationSpecification = new TokenizationStripeSpecification
                    {
                        Type = "PAYMENT_GATEWAY",
                        Parameters = new TokenizationSpecificationStripeParameters
                        {
                            Gateway = _gate.GatewayTitle,
                            GatewayMerchantId = (_gate as XXX.Payment.Gates.StripeGate.Stripe).PublicApiKey,
                            StripeVersion = "2.0",
                            StripeKey = (_gate as XXX.Payment.Gates.StripeGate.Stripe).PublicApiKey
                        }
                    }
                }
            }
        };

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泅渡 2025-02-17 01:44:53

使用adb查看错误的详细信息,即

adb -d logcat -s WalletMerchantError

Google Pay请求失败/故障排除文档:

https://developers.google.com/pay/api/android/android/support/troubleshooting#request-failed

Use adb to view the details of the error, i.e.

adb -d logcat -s WalletMerchantError

Google Pay Request failed / Troubleshooting docs:

https://developers.google.com/pay/api/android/support/troubleshooting#request-failed

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文