How to use the recaptcha-v3.load function in recaptcha-v3

To help you get started, we’ve selected a few recaptcha-v3 examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github short-d / short / frontend / src / service / Captcha.service.ts View on Github external
public initRecaptchaV3(): Promise {
    return load(this.envService.getVal('RECAPTCHA_SITE_KEY')).then(
      reCaptcha => {
        this.reCaptcha = reCaptcha;
      }
    );
  }
github AurityLab / vue-recaptcha-v3 / src / ReCaptchaVuePlugin.ts View on Github external
public async initializeReCaptcha (options: IReCaptchaOptions): Promise {
    return loadReCaptcha(options.siteKey, options.loaderOptions)
  }
}

recaptcha-v3

[![npm](https://img.shields.io/npm/v/recaptcha-v3.svg)](https://www.npmjs.com/package/recaptcha-v3) [![npm type definitions](https://img.shields.io/npm/types/recaptcha-v3.svg)](https://www.npmjs.com/package/recaptcha-v3) [![Standard](https://img.shields.i

Apache-2.0
Latest version published 3 years ago

Package Health Score

50 / 100
Full package analysis

Popular recaptcha-v3 functions