Worked like a charm. Thank you
I added a small change to call the base method in case it dont find the header.
`protected override string GetClientIpAddress() { try { var httpContext = _httpContextAccessor.HttpContext;
if (httpContext?.Request?.Headers?.ContainsKey("CF-Connecting-IP") ?? false)
{
return httpContext.Request.Headers["CF-Connecting-IP"];
}
}
catch (Exception ex)
{
Logger.Warn(ex.ToString());
}
return base.GetClientIpAddress();
}`
Hi,
I've inserted a new line into AbpUserLogins with the correct providerKey which I've got from the frontend login attempt and is working now.
Thanks.