Socket
Socket
Sign inDemoInstall

angular-recaptcha3

Package Overview
Dependencies
5
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    angular-recaptcha3

Angular v6+ integration with google recaptcha v3


Version published
Weekly downloads
461
decreased by-11%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

angular-recaptcha3

Angular v6+ integration with google recaptcha v3

Setup

Setup example:

const RECAPTCHA_OPTION = {
      key: 'test-key',
      size: 'invisible',
      theme: 'light',
      type: 'image',
      tabindex: 0,
      badge: 'bottomright',
      language: 'ru',
      show: true
}

Option description: https://developers.google.com/recaptcha/docs/display

const RECAPTCHA_LANGUAGE = 'ru'

Language codes: https://developers.google.com/recaptcha/docs/language

@NgModule({
    imports: [
        ReCaptchaModule.forRoot(RECAPTCHA_OPTION, RECAPTCHA_LANGUAGE)
    ]
})

To initialize the recaptcha you need to insert in the template

    <recaptcha
        [show]="false">
    </recaptcha>

Recaptcha has parametrs:

  • show
  • sitekey
  • size
  • theme
  • type
  • tabindex
  • badge
  • language

Actions

reCAPTCHA v3 introduces a new concept: actions. When you specify an action name in each place you execute reCAPTCHA you enable two new features:

a detailed break-down of data for your top ten actions in the admin console adaptive risk analysis based on the context of the action (abusive behavior can vary) Importantly, when you verify the reCAPTCHA response you should also verify that the action name matches the one you expect.

    constructor(
        private recaptchaService: ReCaptchaService
    ) { }
    // ...
    recaptchaService.execute({action: 'homepage'}).then(token => {
        //...
    });

Note: actions may only contain alphanumeric characters and slashes, and must not be user-specific.

A more detailed description of ReCaptcha: https://developers.google.com/recaptcha/intro

Keywords

FAQs

Last updated on 31 Oct 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc