fix: remove useCookies from login to allow JWT extraction
This commit is contained in:
@@ -71,7 +71,7 @@ public class IdentityService : IIdentityService
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var response = await _httpClient.PostAsJsonAsync("identity/login?useCookies=true", new { email, password });
|
var response = await _httpClient.PostAsJsonAsync("identity/login", new { email, password });
|
||||||
|
|
||||||
if (response.IsSuccessStatusCode)
|
if (response.IsSuccessStatusCode)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user