Middleware for ASP.NET Core to enable the tracking of anonymous users
Register without options:
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
app.UseAnonymousId();
....
}
Register with options:
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
app.UseAnonymousId(new AnonymousIdCookieOptionsBuilder()
.SetCustomCookieName("MY_COOKIE_NAME") // Custom cookie name
.SetCustomCookieRequireSsl(true) // Requires SSL
.SetCustomCookieTimeout(120) // Custom timeout in seconds
.SetCustomCookieDomain("www.contoso.com") // Custom domain
.SetCustomCookiePath("/path") // Custom path
.SetCustomHeaderName("AnonymousId")); // Custom header name
....
}
Get AnonymousId:
public class HomeController : Controller
{
public ViewResult Index()
{
IAnonymousIdFeature feature = HttpContext.Features.Get<IAnonymousIdFeature>();
if (feature != null)
{
string anonymousId = feature.AnonymousId;
}
....
}
}
This project is licensed under the terms of the MIT license.