BotDetect CAPTCHA Angular Module (TypeScript: Angular 2/4/5/6/7/8+)
For a comprehensive step-by-step integration guide please see our Angular Captcha Module Integration Guide.
The guide covers the integration with the following backends:
- ASP.NET (Core): web API with MVC Core
- ASP.NET (Legacy): Web-API2, MVC1-5, Generic Handler
- Java: Servlet, Spring, Struts
- PHP: the plain PHP
To give you a hint how Angular Captcha Module works we pasted bellow a few excerpts from the Integration Guide.
Quick guide:
Step 1: Install Angular Captcha Module
npm install angular-captcha --save
and add the following lines into the import section of your app's app.module.ts file:
// import the Angular Captcha Module ;
Step 2: Set the captchaEndpoint in Your App's Frontend
Endpoint configuration depends on which technology you use in the backend.
- ASP.NET-based backend:
;
- Java-based backend:
;
- PHP-based backend:
;
Step 3: Displaying the Captcha Challenge in Your Form
Place the following lines in your form where you want to display captcha:
Step 4: Captcha Validation: Client-side Code
;; ; ;
Step 5: Captcha Validation: Server-side Code
The userEnteredCaptchaCode
and captchaId
values posted from the frontend are used to validate a captcha challenge on the backend.
The validation is performed by calling the: Validate(userEnteredCaptchaCode, captchaId)
.
- If you have ASP.NET Captcha library on a server side validation would look similar to this:
// C#SimpleCaptcha yourFirstCaptcha = new SimpleCaptcha();bool isHuman = yourFirstCaptcha.Validate(userEnteredCaptchaCode, captchaId);
' VB.NETDim yourFirstCaptcha As SimpleCaptcha = New SimpleCaptcha()Dim isHuman As Boolean = yourFirstCaptcha.Validate(userEnteredCaptchaCode, captchaId)
- If you have Java Captcha library on a server side validation would look similar to this:
SimpleCaptcha yourFirstCaptcha = SimpleCaptcha.;boolean isHuman = yourFirstCaptcha.;
- If you have PHP Captcha library on a server side validation would look similar to this:
$yourFirstCaptcha = new SimpleCaptcha();$isHuman = $yourFirstCaptcha->Validate($userEnteredCaptchaCode, $captchaId);
Documentation:
Angular Captcha Module Step-by-step Integration Guide -- read this one first
Angular Captcha Module Basic Example -- partial code walk-through
Angular Captcha Module Form Example -- partial code walk-through
Dependencies:
The current version of the Angular Captcha Module requires one of the following BotDetect CAPTCHA backends:
Support:
Send us questions, suggestions contact form on captcha.com.