为了账号安全,请及时绑定邮箱和手机立即绑定

如何在客户端和服务器中使用 HTTP/1.x

如何在客户端和服务器中使用 HTTP/1.x

Go
交互式爱情 2023-06-05 08:58:05
我有一个使用 HTTP/2 工作的基本客户端和服务器实现。我想测试服务器是否也适用于 HTTP/1。有什么方法可以将协议从 HTTP/2 更改为 HTTP/1.x?客户端代码:func main() {  host = "https://127.0.0.1:8080"  client = http.Client{    // InsecureTLSDial is temporary and will likely be    // replaced by a different API later.    Transport: &http2.Transport{        TLSClientConfig: &tls.Config{            InsecureSkipVerify: true,        },    },  }  // further functionality}服务器代码:func main() {    var srv http.Server    srv.Addr = ":8080"    // Set Routes    routes()    // Start server    srv.ListenAndServeTLS("certs/localhost.cert", "certs/localhost.key")}
查看完整描述

1 回答

?
UYOU

TA贡献1878条经验 获得超4个赞

我找到了一个简单的解决方案。


客户端的变化


Transport: &http2.Transport{

    TLSClientConfig: &tls.Config{

        InsecureSkipVerify: true,

    },

},

经过


Transport: &http.Transport{

        TLSNextProto: make(map[string]func(authority string, c *tls.Conn) http.RoundTripper),

        TLSClientConfig: &tls.Config{

            InsecureSkipVerify: true,

        },

    },


查看完整回答
反对 回复 2023-06-05
  • 1 回答
  • 0 关注
  • 138 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信