From 0cf3012e743a9240017b0691084ce024688bb931 Mon Sep 17 00:00:00 2001 From: Mykhailo Date: Tue, 26 Sep 2023 21:07:33 +0300 Subject: [PATCH] SA-10 authentication fixed --- .../Network/AuthenticationService.cs | 3 --- ShoppingAssistantWebClient.Web/Pages/Index.cshtml.cs | 2 -- 2 files changed, 5 deletions(-) diff --git a/ShoppingAssistantWebClient.Web/Network/AuthenticationService.cs b/ShoppingAssistantWebClient.Web/Network/AuthenticationService.cs index 8956d15..457eb4c 100644 --- a/ShoppingAssistantWebClient.Web/Network/AuthenticationService.cs +++ b/ShoppingAssistantWebClient.Web/Network/AuthenticationService.cs @@ -183,9 +183,6 @@ public class AuthenticationService var jsonResponse = JsonConvert.SerializeObject(response.Data.refreshUserToken); var tokens = JsonConvert.DeserializeObject(jsonResponse); _httpContext.Response.Cookies.Append("accessToken", tokens.AccessToken, new CookieOptions { Expires = DateTime.UtcNow.AddDays(180) }); - var newRefreshToken = new Cookie("refreshToken", tokens.RefreshToken); - newRefreshToken.Expires = DateTime.UtcNow.AddDays(180); - _httpContext.Request.Head _httpContext.Response.Cookies.Append("refreshToken", tokens.RefreshToken, new CookieOptions { Expires = DateTime.UtcNow.AddDays(180) }); return tokens.AccessToken; diff --git a/ShoppingAssistantWebClient.Web/Pages/Index.cshtml.cs b/ShoppingAssistantWebClient.Web/Pages/Index.cshtml.cs index b2acd06..784d15c 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Index.cshtml.cs +++ b/ShoppingAssistantWebClient.Web/Pages/Index.cshtml.cs @@ -17,7 +17,5 @@ public class IndexModel : PageModel public void OnGet() { - var token = _authenticationService.GetAuthTokenAsync().Result; - ViewData["Token"] = token; } }