Hello! I am using sttp-client v3.8.11 with http4s v0.23.17.
I have a configured route
HttpRoutes
.of[F] {
case GET -> Root / "users" / userId => ???
}
And I am getting the following error while sending a GET request to the http://0.0.0.0:80/users/user_1234
:
sttp.client3.DeserializationException: No usable value for id
What could be the root cause?