Anyone have an existing example of how to implemen...
# suitecommerce
k
Anyone have an existing example of how to implement Google reCaptcha v3 on SC Checkout forms?
Assuming this will need to be an extension. Are there checkout submit events I can tap into?
d
You can add a module to step (https://system.netsuite.com/help/helpcenter/en_US/APIs/SuiteCommerce/Extensibility/Frontend/Checkout.html#addModuleToStep). Doing that you will have a submit function where you can validate the reCaptcha. Recaptcha v3 will not need a template since works with a score, but you will need a frontend token, and then do validation on a Backend model.
f
I“ve noticed that captcha v3 alone has no way for a user to recover from the fact that is signaled as a bot. Check on that before deciding which recaptcha you are going to implement
šŸ‘†šŸ½ 1
k
Ok thank you for that. What if I want to modify this for the login form instead… same approach?