Directory

← Back

ReCaptcha

ReCaptcha v2 wrapper component

Author

Rating

Popularity

100+

A wrapper component for ReCaptcha v2.

This addon use javascript connector on the client side, so no need for widgetset build.

For more details see the projects GitHub page.

Sample code

ReCaptcha captcha = new ReCaptcha(
    your_private_key,
    new ReCaptchaOptions() {{//your options
        theme = "light";
        sitekey = your public_key;
    }}
);
layout.addComponent(captcha);
if (!captcha.isValid()) {
    Notification.show("Invalid!", Notification.Type.ERROR_MESSAGE);
    captcha.reload();
} else {
    //do your job
}

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

fix issue #11

Released
2017-07-24
Maturity
BETA
License
Apache License 2.0

Compatibility

Framework
Vaadin 7.4+
Vaadin 8.0+
Vaadin 7.1+ in 1.0.2
Browser
Firefox
Opera
Safari
Google Chrome
Internet Explorer
Internet Explorer
Internet Explorer
Microsoft Edge

ReCaptcha - Vaadin Add-on Directory

ReCaptcha v2 wrapper component ReCaptcha - Vaadin Add-on Directory
A wrapper component for ReCaptcha v2. This addon use javascript connector on the client side, so no need for widgetset build. For more details see the projects GitHub page.
Online