我正在将我的网站与3D Secure 2集成,但我不知道如何获取执行JavaScript SDK启动功能所需的信息
paysafe.threedsecure.start("my Base64 encoded single-use API key", {
environment: "TEST",
accountId: "Preferred account ID",
card: {
cardBin: "The card BIN"
}},function (deviceFingerprintingId,error) {...});
此外,使用https://api.test.paysafe.com/threedsecure/v2/accounts/{{account_id}}/authentications测试后台服务实现上的应用程序接口函数得到了以下响应:
{
"liveMode": true,
"error": {
"code": "5269",
"message": "Merchant configuration not found",
"details": [
"No merchant configuration with merchant account id 1001290230 found."
]
}}
我是否需要在请求时指定测试模式或其他内容?如何正确地使用这个新的改进?
附注:我正在使用测试模式,我的商家id在我的测试帐户中。
提前谢谢。
发布于 2019-09-25 19:13:25
您的帐户是否启用了3DS2?我以前的账号没有,所以我不得不要求支持团队这么做。
https://stackoverflow.com/questions/57827318
复制相似问题