Generate the absolute URL for the payload endpoint
Value
A character string containing the complete URL (including protocol, hostname, port, and path) where POST requests should be sent to reach this endpoint.
Examples
if (interactive()) {
server <- function(input, output, session) {
url <- payload_endpoint_url(session, "/data")
print(paste("Send POST requests to:", url))
}
}
