-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
threeDSecure flow stops if Init request to cardinal fails #704
Comments
👋 thanks for reaching out. This particular scenario raises some changes we should make to the SDK. For background, 3DS v1 was deprecated late last year, and as a result any code we have that's opting to fallback to V1 (like when the songbird.js library fails to load) is ultimately going to result in a failed transaction. Even in scenarios where the v1fallback where to succeed on the client, later on when trying to submit a transaction, you'll get a processor decline code 2099. This happens because the card network rejected the 3DS v1 verification. So why even go through the fallback flow in the first place? I think this is a 🐛 that's only surfacing now that 3DS v1 is no longer accepted. I think we may want to change this behavior so that instead of falling back to V1 we do the following:
Based on the context I provided, do my proposed changes make sense? |
In regards to this particular issue with this error code you're seeing, please contact Technical Support with timestamps and the BIN of these failed requests that's resulting in these errors. Our Support teams will be able to use that information to escalate to our MPI provider CardinalCommerce and figure out what's going on |
for internal tracking, issue 29858 |
Thanks for the background of v1 fallback. |
Any news on this issue? |
General information
Issue description
We are using threeDSecure payment on our website, but in some cases the payment flow stops. I figured out that it happens if the request for the following url fails for any reason. You can reproduce using ModResponse Chrome extension and set failed as error reason for this url:
https://centinelapistag.cardinalcommerce.com/V1/Order/JWT/Init
In this case initiateV1Fallback in songbird.js is called with errorType="cardinal-sdk-setup-error.number-10001" and nothing else happens. I'd like to know if v1 fallback happens and show an error message to the user. Would it be possible to emit a new event in initiateV1Fallback function, for example "v1-fallback"?
Then subscribing and showing an error message would look like this
Also in songbird.js initiateV1Fallback is called in other cases as well, for example with errorType "cardinal-sdk-setup-timeout". It would be necessary to show error messsages in these cases too, adding a new event looks like a good solution.
What do you think?
The text was updated successfully, but these errors were encountered: