Im writing a client of http1.1 by rust. Is there any test servers which I can use to test my code.
I'd recommend running your test-server locally. You could use axum as a framework for building a simple test server (and extend it to fit your needs as your client evolves). With axum you can control which version of the http protocol to use (http1
is the default).
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.