s.send('GET / HTTP/1.1\r\nHost: www.sina.com.cn\r\nConnection: close\r\n\r\n')中把http换成https应该如何变化
时间: 2023-11-17 15:06:59 浏览: 128
nhost:GraphQL的开源Firebase替代品
如果将s.send('GET / HTTP/1.1\r\nHost: www.sina.com.cn\r\nConnection: close\r\n\r\n')中的http替换为https,则需要在Host行中添加端口号443,因为https默认使用443端口。修改后的代码如下:
s.send(b'GET / HTTP/1.1\r\nHost: www.sina.com.cn:443\r\nConnection: close\r\n\r\n')。
阅读全文