GooglePay付款问题。 OR_BIBED_10错误
当我尝试在发布应用程序中测试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 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
adb
查看错误的详细信息,即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.Google Pay Request failed / Troubleshooting docs:
https://developers.google.com/pay/api/android/support/troubleshooting#request-failed