I can’t find a precise answer on that question :
Are parameters which are sent by PUT passed in the URL, or in the HTTP header ?
I think it’s the HTTP header, but when I submit my form with the PUT method, it appends the parameters to the URL !
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not the headers. It’s the same as POST – either the URL or the body of the request. The only difference is the HTTP verb being used and of course the semantics that come with it (UPDATE a resource on the server).