http、https、websocket

概念解析

HTTP(超文本传输协议)是一种无状态的请求/响应协议,通常用于客户端(如Web浏览器)和服务器之间的通信。客户端发送一个请求到服务器,然后服务器返回一个响应。HTTPS是HTTP的安全版本,它在HTTP的基础上通过SSL/TLS提供了数据加密。

WebSocket协议提供了在客户端和服务器之间的持久连接上进行全双工通信的能力。这意味着服务器可以在任何时候发送消息给客户端,而不需要客户端先发起请求,这对于需要实时更新的应用程序(如在线游戏、聊天应用等)非常有用。

要运行这些示例,请确保你已经安装了必要的库:

bash 复制代码
pip install requests websocket-client

HTTP 示例程序

这个程序将发送一个GET请求到 `httpbin.org`,这是一个用于测试HTTP请求和响应的服务。

python 复制代码
import requests

def http_get_example():
    url = 'https://httpbin.org/get'
    response = requests.get(url)
    print("HTTP GET Response:")
    print(response.json())  # 打印JSON响应的内容

# 运行HTTP示例
http_get_example()

HTTPS 示例程序

HTTPS与HTTP在代码层面上几乎是相同的,`requests` 库会自动处理HTTPS连接的加密。这里我们使用相同的服务,但是通过HTTPS进行通信。

python 复制代码
def https_get_example():
    url = 'https://httpbin.org/get'
    response = requests.get(url)
    print("HTTPS GET Response:")
    print(response.json())  # 打印JSON响应的内容

# 运行HTTPS示例
https_get_example()

WebSocket 示例程序

这个程序将连接到 `websocket.org` 的测试服务器,并发送一个消息,然后接收回声消息。

python 复制代码
import websocket
import _thread
import time

def on_message(ws, message):
    print("WebSocket Message Received:")
    print(message)
    ws.close()

def on_error(ws, error):
    print("WebSocket Error:", error)

def on_close(ws, close_status_code, close_msg):
    print("WebSocket Connection Closed")

def on_open(ws):
    def run(*args):
        time.sleep(1)
        ws.send("Hello, WebSocket!")
    _thread.start_new_thread(run, ())

def websocket_example():
    ws = websocket.WebSocketApp("wss://echo.websocket.org",
                                on_open=on_open,
                                on_message=on_message,
                                on_error=on_error,
                                on_close=on_close)
    ws.run_forever()

# 运行WebSocket示例
websocket_example()

在这些示例中,HTTP和HTTPS程序演示了如何使用请求/响应模型进行通信,而WebSocket程序演示了如何建立持久的全双工通信连接。

然后,将上述代码片段保存到一个`.py`文件中,并运行它。每个函数将演示其对应协议的核心通信功能。

相关推荐
黑客老陈17 分钟前
新手小白如何挖掘cnvd通用漏洞之存储xss漏洞(利用xss钓鱼)
运维·服务器·前端·网络·安全·web3·xss
HSunR2 小时前
计算机网络
网络·计算机网络
ZoeLandia2 小时前
WebSocket | 背景 概念 原理 使用 优缺点及适用场景
网络·websocket·网络协议
南七澄江2 小时前
各种网站(学习资源及其他)
开发语言·网络·python·深度学习·学习·机器学习·ai
Crossoads6 小时前
【汇编语言】端口 —— 「从端口到时间:一文了解CMOS RAM与汇编指令的交汇」
android·java·汇编·深度学习·网络协议·机器学习·汇编语言
诸葛悠闲6 小时前
SOME/IP 协议详解——信息格式
网络协议
gywl8 小时前
openEuler VM虚拟机操作(期末考试)
linux·服务器·网络·windows·http·centos
WTT00119 小时前
2024楚慧杯WP
大数据·运维·网络·安全·web安全·ctf
某柚啊9 小时前
Windows开启IIS后依然出现http error 503.the service is unavailable
windows·http
_oP_i10 小时前
HTTP 请求Media typetext/plain application/json text/json区别
网络协议·http·json