Reputation: 10954
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!
Upvotes: 7
Views: 12909
Reputation: 41997
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.
Upvotes: 1
Reputation: 16070
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.
Upvotes: 2