http: Find out about http status codes

Description Usage Arguments Value Examples

Description

Find out about http status codes

Usage

1
2
3
http_code(code, verbose = FALSE)

http_search(text, verbose = FALSE)

Arguments

code

(character) An http status code, or a regex search for HTTP status codes. must be length 1. required

verbose

(logical) include verbose status code explanation. Default: FALSE

text

(character) A text string to search the messages or descriptions of HTTP status codes. required

Value

on S3 object of class http_code, that is inside a list of the form:

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# search by code
http_code(100)
http_code(400)
http_code(503)
## verbose explanation
http_code(100, verbose = TRUE)
http_code(400, verbose = TRUE)
http_code(503, verbose = TRUE)

# fuzzy code search
http_code('1xx')
http_code('3xx')
http_code('30[12]')
http_code('30[34]')
http_code('30[34]')
## verbose explanation
http_code('1xx', verbose = TRUE)
http_code('3xx', verbose = TRUE)

# search by text message
http_search("request")
http_search("forbidden")
http_search("too")
## verbose explanation
http_search("request", verbose = TRUE)

## Not run: 
http_search("birds")
http_code(999)

## End(Not run)

httpcode documentation built on April 14, 2020, 6:20 p.m.