parse_multipart: Parse a multipart/form-data request

View source: R/parse_multipart.R

parse_multipartR Documentation

Parse a multipart/form-data request

Description

Parse a multipart/form-data request, which is usually generated from a HTML form submission. The parameters can include both text values as well as binary files. They can be distinguished from the presence of a filename attribute.

Usage

parse_multipart(body, boundary)

Arguments

body

body of the HTTP request. Must be raw or character vector.

boundary

boundary string as specified in the Content-Type request header.

Details

A multipart/form-data request consists of a single body which contains one or more values plus meta-data, separated using a boundary string. This boundary string is chosen by the client (e.g. the browser) and specified in the Content-Type header of the HTTP request. There is no escaping; it is up to the client to choose a boundary string that does not appear in one of the values.

The parser is written in pure R, but still pretty fast because it uses the regex engine.

Examples

## Not run: example form
demo_rhttpd()

## End(Not run)

webutils documentation built on Nov. 24, 2023, 5:11 p.m.