Challenge retrieve api

This commit is contained in:
2025-06-18 01:26:34 +08:00
parent 2a5926a94a
commit ca2d37eb39
4 changed files with 16 additions and 4 deletions

View File

@@ -355,7 +355,7 @@ public class ConnectionController(
connection.Account,
HttpContext,
deviceId ?? string.Empty);
return Redirect($"/auth/callback?context={challenge.Id}");
return Redirect($"/auth/callback?challenge={challenge.Id}");
}
// Register new user

View File

@@ -291,6 +291,5 @@ public class OidcCallbackData
public string Code { get; set; } = "";
public string IdToken { get; set; } = "";
public string? State { get; set; }
public string? CodeVerifier { get; set; }
public string? RawData { get; set; }
}