gpt4 book ai didi

android - 从 Google Pay 中排除信用卡

转载 作者:行者123 更新时间:2023-12-04 10:44:45 26 4
gpt4 key购买 nike

最近宣布,从 2020 年 4 月起,英国将禁止通过信用卡进行赌博。因此,我需要从 Google Pay 中排除信用卡,以便用户无法选择一种作为付款方式。

我知道我可以像这样排除特定的卡网络:

private static JSONArray getAllowedCardNetworks() {
return new JSONArray()
.put("AMEX")
.put("DISCOVER")
.put("INTERAC");
.put("JCB")
.put("MASTERCARD")
.put("VISA");
}

然而,鉴于卡网络可以提供借记卡和信用卡,因此排除使用网络是没有意义的。

还可以选择通过以下方式排除预付卡
allowPrepaidCards

但是我看不到任何关于排除信用卡或借记卡的内容,这是不支持的吗?

编辑:

与谷歌交谈后,他们给了我以下回复,我会在此功能可用时进行更新。与此同时,请遵循 Sams 的建议。

Thank you for reaching out. Unfortunately, we currently don't have a way of excluding credit cards from Google Pay API. We are aware of this and we are reviewing the possible options we have to enable this feature. Please let us check with the product the roadmap of this feature and we will get back to you.

最佳答案

此功能现已可用,但文档尚未更新。

查看示例 Web 实现:https://jsfiddle.net/6983ofu2/

const baseCardPaymentMethod = {
  type: 'CARD',
  parameters: {
    allowedAuthMethods: allowedCardAuthMethods,
    allowedCardNetworks: allowedCardNetworks,
allowCreditCards: false
  }
};

看看它是否也适用于 Android 会很有趣。

关于android - 从 Google Pay 中排除信用卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59755436/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com