translateLocalUrl {rstudioapi} | R Documentation |
Translate Local URL
Description
Translates a local URL into an externally accessible URL on RStudio Server.
Usage
translateLocalUrl(url, absolute = FALSE)
Arguments
url |
The fully qualified URL to translate; for example,
|
absolute |
Whether to return a relative path URL (the default) or an absolute URL. |
Details
On RStudio Server, URLs which refer to the local host network address (such
as http://localhost:1234/
and http://127.0.0.1:5678/
) must be
translated in order to be externally accessible from a browser. This method
performs the required translation, and returns the translated URL, which
RStudio Server uses to proxy HTTP requests.
Returns an unmodified URL on RStudio Desktop, and when the URL does not refer to a local address.
Value
The translated URL.
[Package rstudioapi version 0.16.0 Index]