-
|
Hi, I am currently evaluating the Ory Hydra service for my company. I also already successfully tested kratos for user authentication. My Setup:
What I`m trying to do is making Postman requests to verify the API is working as I would expect in a sample scenario following the guide at https://www.ory.sh/docs/hydra/concepts/login. I can initialize the login flow, using The response is the expected redirect to the login page of my app including the login_challenge from Hydra. Next I just accept the login request using {
"context": {"target":"backend"},
"remember": true,
"remember_for": 0,
"subject": "zipunrar"
}The response is a 200 Ok, including a json body with a "redirect_to" URL like {
"redirect_to": "http://localhost:4444/oauth2/auth?login_verifier=205b59e8c3d64de6907b06d25a7b4357"
}However, calling this URL will result in 302 - Found with this error message: I don't understand why the client should not exists if all other requests work well. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
Hello @Zipunrar, Can you try running this through something like cURL instead of Postman? Let me know if that does not help and I will see to reproduce, |
Beta Was this translation helpful? Give feedback.
Hello @Zipunrar,
apologies for the late answer!
Can you try running this through something like cURL instead of Postman?
Postman is a fully fledged electron browser under the hood and that sometimes causes issues.
Let me know if that does not help and I will see to reproduce,
thanks!