We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that resty v2 does not support HTTP3/QUIC. Are there any plans to support in v3?
The text was updated successfully, but these errors were encountered:
HTTP/3 can be used in Resty using the library https://github.com/quic-go/quic-go with https://pkg.go.dev/github.com/go-resty/resty/v2#Client.SetTransport
roundTripper := &http3.RoundTripper{ TLSClientConfig: &tls.Config{}, // set a TLS client config, if desired QUICConfig: &quic.Config{}, // QUIC connection options } defer roundTripper.Close() restyClient := resty.New().SetTransport(roundTripper)
Reference: https://quic-go.net/docs/http3/client/
Sorry, something went wrong.
jeevatkm
No branches or pull requests
It seems that resty v2 does not support HTTP3/QUIC. Are there any plans to support in v3?
The text was updated successfully, but these errors were encountered: