.shared-parameters {cookies} | R Documentation |
Parameters used in multiple functions
Description
These are parameters that are likely to show up in multiple functions, so I gather their definitions in one easy-to-find place.
Arguments
attributes |
A list with values for |
cookie_name |
The name of the cookie. Can contain any US-ASCII characters except for: the control character, space, a tab, or separator characters like ( ) < > @ , ; : \ " / [ ] ? = { }. |
cookie_value |
The contents of the cookie as a single character value. |
domain |
The host to which the cookie will be sent (including
subdomains). If this is |
expiration |
Days after which the cookie should expire. To remove an HttpOnly cookie, send a negative value for this attribute. |
http_only |
Logical indicating whether the cookie should only be sent as
part of an HTTP request. When this is |
path |
The path that must exist in the requested URL for the browser to send this cookie. Includes subdirectories. |
same_site |
One of "strict", "lax" (default), or "none", indicating when
the cookie should be sent. When |
secure_only |
Logical indicating whether the cookie should only be
accessible via secure ( |
session |
Shiny session in which the cookies can be found (the default should probably always be used). |
ui |
A 0- or 1-argument function defining the ui of a shiny app, or a
|