AkismetApi.Net
3.0.0.1
dotnet add package AkismetApi.Net --version 3.0.0.1
NuGet\Install-Package AkismetApi.Net -Version 3.0.0.1
<PackageReference Include="AkismetApi.Net" Version="3.0.0.1" />
paket add AkismetApi.Net --version 3.0.0.1
#r "nuget: AkismetApi.Net, 3.0.0.1"
// Install AkismetApi.Net as a Cake Addin #addin nuget:?package=AkismetApi.Net&version=3.0.0.1 // Install AkismetApi.Net as a Cake Tool #tool nuget:?package=AkismetApi.Net&version=3.0.0.1
Akismet.Net
Complete and full-featured Akismet client for .NET
Existing libraries don't allow for all of the possible options available in the Akismet API and the source code is not public. This library is meant to fix that.
It is also multi-targeted to support as many applications as possible.
Meant to be a drop-in replacement for the leading Akismet library with minimal changes so the class names are the same. However some properties have been removed because of redundancy.
Example usage:
var model = new ContactModel();
string ip = Request.Headers["CF-Connecting-IP"] ?? Request.UserHostAddress;
if (String.IsNullOrWhiteSpace(ip))
ip = Request.ServerVariables["REMOTE_HOST"];
AkismetClient akismet = new AkismetClient("apikeyhere", new Uri("https://www.adamh.us"), "Application Name");
AkismetComment comment = new AkismetComment
{
CommentAuthor = model.Name,
CommentAuthorEmail = model.EmailAddress,
CommentAuthorUrl = "http://www.spamwebsite.com",
Referrer = Request.UrlReferrer.ToString(),
UserAgent = Request.UserAgent,
UserIp = ip,
CommentContent = model.Message,
CommentType = AkismentCommentType.ContactForm, // multiple defined values, or use new AkismetCommentType("new-comment-type") for a custom option
Permalink = "https://www.adamh.us/contact",
IsTest = "false",
BlogCharset = "UTF-8",
BlogLanguage = "en-US",
CommentDate = DateTime.UtcNow.ToString("s"), // ISO-8601 format
CommentPostModified = DateTime.UtcNow.ToString("s"), // ISO-8601 format
UserRole = "administrator",
RecheckReason = "edit",
HoneypotFieldName = "honeypot",
HoneypotFieldValue = "blah"
};
var akismetResult = akismet.Check(comment);
bool isSpam = akismetResult.SpamStatus == SpamStatus.Spam; // Options: Ham, Spam, Unspecified (in the case of an error)
// "invalid" and/or combination of X-akismet-alert-code and X-akismet-alert-msg header values
foreach (string err in akismetResult.Errors)
Console.WriteLine(err);
// Other properties:
// - ProTip (X-akismet-pro-tip header value, if present)
// - DebugHelp (X-akismet-debug-help header value, if present)
If HoneypotFieldName
and HoneypotFieldValue
are supplied then the library will add these two values to the request:
honeypot_field_name=honeypot&honeypot=blah
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5.2
- Newtonsoft.Json (>= 13.0.1)
- RestSharp (>= 106.13.0)
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.7.0)
- Newtonsoft.Json (>= 13.0.1)
- RestSharp (>= 106.13.0)
-
net6.0
- Newtonsoft.Json (>= 13.0.1)
- RestSharp (>= 106.13.0)
-
net7.0
- Newtonsoft.Json (>= 13.0.1)
- RestSharp (>= 106.13.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on AkismetApi.Net:
Package | Downloads |
---|---|
Akismet.Umbraco
Akismet for Umbraco (9+) |
|
Akismet.Umbraco8.Core
Akismet for Umbraco 8 |
|
Akismet.UmbracoForms8.Workflow
Akismet Workflow for Umbraco Forms 8 |
GitHub repositories
This package is not used by any popular GitHub repositories.
Dropped explicit support for .NET Core 3.1 and .NET 5 and added support for .NET 7