请求 HTTP URL 之间有什么区别(如果操作不同)?
我可以从请求的 URL 检测到请求的操作是:-
下载。
注册。
流式传输。
付款。
还是其他..?
有人告诉我请求包含这些字符:“?” '=' 用于流请求。
Can I detect from the URL of the request that the operation requested is:-
Download.
Registration.
Streaming.
Payment.
Or Other else..?
Somebody told me that request contains these characters : '?' '=' is for streaming requests.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可靠。您也许能够根据不同请求的 URL 中使用的常用词进行猜测,但 HTTP 并没有指定您在 URL 方面所询问的任何内容。
'?'和“=”通常出现在带有参数的请求中。但这可能是任何事情。
Not reliably. You might be able to guess based on common words used in the URLs for different requests, but HTTP specifies none of what you're asking when it comes to URLs.
'?' and '=' are commonly present in a request that has parameters. But that could be anything.