public IActionResult ExternalLoginGoogleAccount() { var userIp = Request.HttpContext.Connection.RemoteIpAddress; var redirectUri = _externalLoginService.GetGoogleUrl(userIp); _logger.LogInformation($"User with ip: {userIp} started google logging flow"); return(Ok(redirectUri)); }