Persilsoft.Recaptcha.Server
1.0.0
See the version list below for details.
dotnet add package Persilsoft.Recaptcha.Server --version 1.0.0
NuGet\Install-Package Persilsoft.Recaptcha.Server -Version 1.0.0
<PackageReference Include="Persilsoft.Recaptcha.Server" Version="1.0.0" />
paket add Persilsoft.Recaptcha.Server --version 1.0.0
#r "nuget: Persilsoft.Recaptcha.Server, 1.0.0"
// Install Persilsoft.Recaptcha.Server as a Cake Addin #addin nuget:?package=Persilsoft.Recaptcha.Server&version=1.0.0 // Install Persilsoft.Recaptcha.Server as a Cake Tool #tool nuget:?package=Persilsoft.Recaptcha.Server&version=1.0.0
Persilsoft.Recaptcha.Server
It exposes an endpoint to interact with the Google API to validate a token.
Example:
First, you need to register the group of services required by the backend.
using Persilsoft.Recaptcha.Server.Options;
using ServiceCollectionExtensions;
builder.Services.Configure<RecaptchaOptions>(builder.Configuration.GetSection(RecaptchaOptions.SectionKey));
builder.Services.AddRecaptchaService();
In the appsetting.json configuration file, you need to configure the following key:
"Recaptcha": {
"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.UseRecaptchaEndpoints();
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.
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.Recaptcha.Shared (>= 1.0.0)
- Swashbuckle.AspNetCore.Annotations (>= 6.5.0)
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 | 158 | 10/16/2024 |
1.0.22 | 122 | 10/4/2024 |
1.0.21 | 85 | 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 | 206 | 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 | 96 | 4/27/2024 |
1.0.5 | 92 | 4/27/2024 |
1.0.4 | 101 | 4/27/2024 |
1.0.2 | 112 | 4/21/2024 |
1.0.1 | 107 | 4/21/2024 |
1.0.0 | 109 | 4/21/2024 |