Persilsoft.Recaptcha.Server
1.0.15
See the version list below for details.
dotnet add package Persilsoft.Recaptcha.Server --version 1.0.15
NuGet\Install-Package Persilsoft.Recaptcha.Server -Version 1.0.15
<PackageReference Include="Persilsoft.Recaptcha.Server" Version="1.0.15" />
paket add Persilsoft.Recaptcha.Server --version 1.0.15
#r "nuget: Persilsoft.Recaptcha.Server, 1.0.15"
// Install Persilsoft.Recaptcha.Server as a Cake Addin #addin nuget:?package=Persilsoft.Recaptcha.Server&version=1.0.15 // Install Persilsoft.Recaptcha.Server as a Cake Tool #tool nuget:?package=Persilsoft.Recaptcha.Server&version=1.0.15
Persilsoft.Recaptcha.Server
It exposes an endpoint to interact with the Google API to validate a reCAPTCHA V3 token.
Example:
First, you need to register the group of services required by the backend.
using Persilsoft.Recaptcha.Server.Options;
using ServiceCollectionExtensions;
Action<RecaptchaOptions> recaptchaOptionsConfigurator = options =>
builder.Configuration.GetSection(RecaptchaOptions.SectionKey).Bind(options);
builder.Services.AddRecaptchaService(recaptchaOptionsConfigurator);
In the appsetting.json configuration file, you need to configure the following key:
"RecaptchaOptions": {
"VerifyEndpoint": "https://www.google.com/recaptcha/api/siteverify",
"SecretKey": "xxxxxxxx"
}
Where:
VerifyEndpoint: It is the private key provided by Google to interact with their services.
Once the services are registered, you need to add to the AspNet Core pipeline the Endpoints that interact with the Google API:
using WebApplicationExtensions;
app.MapRecaptchaEndpoints();
Now, you can test the endpoint. If your WebApi has Swagger installed and configured, you'll be able to visualize and execute it.
Verify token
To validate a Recaptcha token, it needs to be validated with the Google API through this endpoint, which has the following JSON structure:
{
"token": "string"
}
Note: To obtain a Recaptcha token, you can refer to the documentation of the package Persilsoft.Recaptcha.Blazor.
Token restrictions:
- Each reCAPTCHA user response token is valid for two minutes, and can only be verified once to prevent replay attacks. If you need a new token, you can re-run the reCAPTCHA verification.
- After you get the response token, you need to verify it within two minutes with reCAPTCHA using the following API to ensure the token is valid.
If an error occurs while validating the Recaptcha token, a 'VerifyRecaptchaTokenException' exception will be thrown. You can implement a custom exception handler to handle it and format the response appropriately, or you can register the exception handler included in this package.
builder.Services.AddRecaptchaExceptionHandler();
And include it in the pipeline of your AspNet Core application.
app.UseExceptionHandler(builder => { });
For more information about verifying the reCAPTCHA token, you can visit the following link:
https://developers.google.com/recaptcha/docs/verify
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Microsoft.Extensions.Options (= 8.0.2)
- Persilsoft.Exceptions (= 1.0.10)
- Persilsoft.OperationResult (= 1.0.4)
- Persilsoft.Recaptcha.Shared (= 1.0.4)
- Swashbuckle.AspNetCore.Annotations (= 6.6.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.23 | 143 | 10/16/2024 |
1.0.22 | 121 | 10/4/2024 |
1.0.21 | 84 | 10/4/2024 |
1.0.20 | 97 | 9/1/2024 |
1.0.19 | 109 | 8/28/2024 |
1.0.18 | 81 | 8/28/2024 |
1.0.17 | 108 | 8/18/2024 |
1.0.16 | 105 | 8/18/2024 |
1.0.15 | 131 | 8/12/2024 |
1.0.14 | 205 | 7/20/2024 |
1.0.13 | 153 | 5/25/2024 |
1.0.12 | 87 | 5/21/2024 |
1.0.11 | 210 | 5/5/2024 |
1.0.10 | 177 | 5/4/2024 |
1.0.9 | 94 | 5/1/2024 |
1.0.8 | 93 | 4/28/2024 |
1.0.7 | 94 | 4/27/2024 |
1.0.5 | 92 | 4/27/2024 |
1.0.4 | 99 | 4/27/2024 |
1.0.2 | 112 | 4/21/2024 |
1.0.1 | 107 | 4/21/2024 |
1.0.0 | 107 | 4/21/2024 |