- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
seems to be Barclaycards. Anyone know what may be wrong
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report Inappropriate Content
Hi @BirmFizz, sorry to hear that your customers were unable to verify. This is likely to be related to 3D Secure with your custom API. Please make sure you have implemented the 3D Secure to your payment integration. All the information you need and steps to follow to implement SCA (Strong Customer Authentication) is outlined here.
Community Manager, Square
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report Inappropriate Content
nonce,
verificationDetails,
function(err,verification) {
if (err == null) {
document.getElementById('veriToken').value = verification.token;
nonceField.value = nonce;
// alert("Veri"+verification.token);
} else {
alert("Failed to verify buyer" + err.type + ":" + err.message);
console.log("Buyer verification failed: " + err.type + ": " + err.message);
return false;
}
});
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report Inappropriate Content
Thank you @BirmFizz for the details. 3D Secure is the new EEA regulation. Online payment processed through Square Online is automatically updated. However, all the custom APIs need to be updated with VerifyBuyer by the sellers.
From the information you gave me, I understand you are using a custom API. Please contact our support team from the Square developer website. Scroll down to the footer of the page and click Contact Support. Our team will need to have a look at the specific payment form and will help you with this matter.
Community Manager, Square
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report Inappropriate Content
There is no - 'Contact Support' at footer of the page?? Only contact Sales.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report Inappropriate Content
Sorry, there is ... went blind for a second ๐
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report Inappropriate Content