colossal-summer-71012
08/04/2022, 4:17 PMloginRes, x, err := s.HydraAPIClient.AdminApi.GetLoginRequest(r.Context()).LoginChallenge(challenge).Execute()
I tried setting them like so, but with no success:
auth := context.WithValue(r.Context(), "basic", &hydra.BasicAuth{
UserName: s.IDPConfig.HydraAdminCreds.User,
Password: s.IDPConfig.HydraAdminCreds.Pass,
})
loginRes, x, err := s.HydraAPIClient.AdminApi.GetLoginRequest(auth).LoginChallenge(challenge).Execute()
Sorry if this is ibvious, but i'm trying to add this to @bulky-architect-22083’s code from the hydra/kratos integrationbulky-architect-22083
08/06/2022, 3:13 AM