httpResponse: Create an HTTP response object

View source: R/middleware.R

httpResponseR Documentation

Create an HTTP response object

Description

Create an HTTP response object

Usage

httpResponse(
  status = 200L,
  content_type = "text/html; charset=UTF-8",
  content = "",
  headers = list()
)

Arguments

status

HTTP status code for the response.

content_type

The value for the Content-Type header.

content

The body of the response, given as a single-element character vector (will be encoded as UTF-8) or a raw vector.

headers

A named list of additional headers to include. Do not include Content-Length (as it is automatically calculated) or Content-Type (the content_type argument is used instead).

Examples

httpResponse(status = 405L,
  content_type = "text/plain",
  content = "The requested method was not allowed"
)


shiny documentation built on Nov. 18, 2023, 1:08 a.m.