【发布时间】:2017-06-18 04:06:12
【问题描述】:
我创建了一个 paypal 企业帐户,我想使用 paypal v.zero 库来保管信用卡以接受付款。我已经使用沙盒帐户测试了所有内容,但没有使用我的贝宝商业帐户。我不断收到以下错误
{
"creditCardVerification": null,
"transaction": null,
"subscription": null,
"errors":{
"allDeepValidationErrors":[
{"attribute": "payment_method_token", "code": "TRANSACTION_PAYMENT_METHOD_TOKEN_CARD_TYPE_IS_NOT_ACCEPTED", "message": "Payment instrument type is not accepted by this merchant account."…},
{"attribute": "merchant_account_id", "code": "TRANSACTION_PAYMENT_INSTRUMENT_NOT_SUPPORTED_BY_MERCHANT_ACCOUNT", "message": "Merchant account does not support payment instrument."…}
],
"allValidationErrors":[]
},
"parameters":{
"transaction[type]": "sale",
"transaction[payment_method_token]": "xxxxxx",
"transaction[amount]": "1"
},
"message": "Payment instrument type is not accepted by this merchant account.\nMerchant account does not support payment instrument.",
"target": null,
"success": false
}
【问题讨论】:
-
您在使用 Braintree Sandbox 或 Production 帐户时是否收到此错误?如果是生产,您是否关注PayPal setup guide?
-
不,我已经测试了沙盒,它工作得很好。在与 Braintree 支持人员交谈后,他们说我不能将他们的保险库用于信用卡。我只能用它来保存贝宝帐户,顺便说一句很不幸。我想知道是否有其他方法可以保管信用卡并使用贝宝接受付款。