reCAPTCHA.AspNetCore 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package reCAPTCHA.AspNetCore --version 1.0.0
NuGet\Install-Package reCAPTCHA.AspNetCore -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="reCAPTCHA.AspNetCore" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add reCAPTCHA.AspNetCore --version 1.0.0
#r "nuget: reCAPTCHA.AspNetCore, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install reCAPTCHA.AspNetCore as a Cake Addin
#addin nuget:?package=reCAPTCHA.AspNetCore&version=1.0.0

// Install reCAPTCHA.AspNetCore as a Cake Tool
#tool nuget:?package=reCAPTCHA.AspNetCore&version=1.0.0

reCAPTCHA.AspNetCore

Google reCAPTCHA for ASP.NET Core 2

Requirements

You must first have a secret key and a site key in order to use the reCAPTCHA service. You can read more about reCAPTCHA as well as sign up for free here: https://www.google.com/recaptcha/intro/

Configure

Right click on your project file and goto Manage Secrets.

This will open secrets.json. Add the follow entry to the file make sure to paste in your secret key and site key:

"RecaptchaSettings": {
    "SecretKey": "paste secret key here",
    "SiteKey": "paste site key here"
  } 

Now open Startup.cs and add the following code as shown below to your ConfigureServices method:

services.Configure<RecaptchaSettings>(Configuration.GetSection("RecaptchaSettings"));
services.AddTransient<IRecaptchaService, RecaptchaService>();

Usage

In order to prevent having to copy and paste your site key all over your view files (a nightmare to update later). You can inject your settings from the Startup method by adding the following code to top of your view file:

@inject IOptions<RecaptchaSettings> RecaptchaSettings

You can then freely include the Recaptcha script inside of forms you wish to vaidate later in your controller (supports multiple forms).

@using (Html.BeginForm("SomeMethod", "SomeController")) {
  @Html.Recaptcha(RecaptchaSettings.Value.SiteKey)
}

Validation

In order to validate a recaptcha script being used in a form you will first need to inject the IRecaptchaService class into your controller using the code below:

private IRecaptchaService _recaptcha;

public SomeController(IRecaptchaService recaptcha)
{
  _recaptcha = recaptcha;
}

Finally you can validate the recaptcha attempts using the Validate method in the Recaptcha service in your HttpPost method:

[HttpPost]
public async Task<IActionResult> SomeMethod(SomeModel model)
{
  var valid = await _recaptcha.Validate(Request);
  return View();
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on reCAPTCHA.AspNetCore:

Package Downloads
FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on reCAPTCHA.AspNetCore:

Repository Stars
poppastring/dasblog-core
The original DasBlog reimagined with ASP.NET Core
Version Downloads Last updated
3.0.10 917,394 8/26/2020
3.0.9 699 8/25/2020
3.0.8 1,484 8/22/2020
3.0.7 3,377 8/12/2020
3.0.6 13,846 7/10/2020
3.0.5 2,555 6/25/2020
3.0.4 9,564 6/24/2020
3.0.3 17,552 5/8/2020
3.0.2 3,955 5/4/2020
3.0.1 832 5/4/2020
3.0.0 1,030 5/3/2020
2.2.5 25,330 5/2/2020
2.2.3 162,797 4/15/2019
2.2.2 3,586 4/11/2019
2.2.1 1,040 4/9/2019
2.2.0 1,834 4/8/2019
2.1.3 33,498 1/12/2019
2.1.2 1,421 1/4/2019
2.1.1 2,533 11/24/2018
2.1.0 1,991 10/13/2018
2.0.0 1,347 9/20/2018
1.0.1 4,265 11/5/2017
1.0.0 1,300 11/1/2017