A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

Validator.nu Textarea Input: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(Content-type)
m (Category)
Line 7: Line 7:
==See also==
==See also==
*[[Validator.nu Web Service Interface]]
*[[Validator.nu Web Service Interface]]
[[Category:Validator.nu Documentation]]

Revision as of 09:17, 7 February 2008

To use Validator.nu as a Web service by POSTing a text field, the client issues an HTTP request either to http://validator.nu/ or http://html5.validator.nu/ using the POST method with an multipart/form-data entity body. (application/x-www-form-urlencoded is not supported.) Common parameters are encoded as form fields. The document to check is included as the value of a form field called content. The content field must be the last field in the submission.

The request should set the parser parameter explicitly. Content-Type is synthetized by selecting text/html or application/xml depending on the parser value and clamping the charset MIME type parameter to utf-8).

All field values including the document source must decode as UTF-8.

See also