HTTP PUT method structure example
I learn about HTTP and need some examples of HTTP PUT method structure, something like this one for HTTP POST method
Can you tell me some, thanks!
The structure is exactly the same, just the use of the body (replaces the original content) is different.
Guess what, there's a spec: RFC 2616, Section 9.6.
I think the best examples you're going to get are real world examples. Download LiveHTTPHeaders for Firefox and start recording some of your own traffic to somewhere you know you post data to. You'll have an endless amount of data to look over that way.
链接地址: http://www.djcxy.com/p/2298.html上一篇: 如何使用Google Maps API v3从地图中获取MapOptions对象
下一篇: HTTP PUT方法结构示例