我正在将我的网站与 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"
}
},函数(deviceFingerprintingId,错误){...});
在后台服务实现上测试 API 函数
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."
]
}
}
我是否需要根据要求指定测试模式之类的东西?如何正确使用这项新改进?
PS:我正在使用测试模式,我的商家 ID 在我的测试帐户中。
提前致谢。