当前位置:网站首页>various network protocols
various network protocols
2022-08-01 07:57:00 【Kindergarten mobile】
Agreement
Recognize URL
What we commonly call "URL" is actually what we call URL

HTTP protocol format
HTTP request

HTTP Response

HTTP methods
get method
- Get the corresponding resource information directly
- The get method can take parameters (the url's ? is followed by get parameters)
- Handling of insensitive data
post method
- The data is submitted to the server through the body, not through the url
- post-"cont-length: text
- Processing encrypted content data
The difference between get and post: post can pass more parameters than get and is more private.
HTTP status code

Common HTTP Header
- Content-Type: data type (text/html, etc.)
- Content-Length: Length of Body
- Host: The client tells the server that the requested resource is on which host and which port
- User-Agent: declares the user's operating system and browser version information
- referer: The page from which the current page is redirected
- location: used with 3xx status code to tell the client where to visit next
- Cookie: Used to store a small amount of information on the client side. Usually used to implement the function of session
边栏推荐
- JSON 与 JS 对象的区别
- HoloView -- Tabular Datasets
- 研发过程中的文档管理与工具
- 图片无损压缩软件哪个好用:试试完全免费的JPG-C 图片批量修整压缩减肥工具吧 | 最新jpg批量修整工具下载
- 日志导致线程Block的这些坑,你不得不防
- 华为深度学习课程第六、七章
- Holoview--Introduction
- 22 Grab the Seat 1 C.Grab the Seat (Geometry + Violence)
- POJ2031空间站题解
- pytest interface automation testing framework | single/multiple parameters
猜你喜欢
随机推荐
LeetCode240+312+394
最新的Cesium和Three的整合方法(附完整代码)
研发过程中的文档管理与工具
22 Grab the Seat 1 C.Grab the Seat (Geometry + Violence)
Go 支持 OOP: 用 struct 代替 class
【MySQL】操作表DML相关语句
C语言学习概览(一)
Data Analysis 6
Centos install php7.4, build hyperf, forward RDS
Gethostbyname \ getaddrinfo DNS domain name IP address is not safe
特殊的日子,值得纪念
将aof文件转换为命令waoffle安装和使用
支付宝如何生成及配置公钥证书
SaaS安全认证综合指南
Delphi MDI appliction documents maximize display, remove buttons such as maximize and minimize
微信小程序请求封装
我的创作纪念日
navicat mysql 内存占用过高,被强制关闭
C语言学习概览(二)
VoLTE Basic Learning Series | Enterprise Voice Network Brief








