You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<html><head><title>static</title></head><body>
this is static.
</body></html>
This is the R command run by the RStudio IDE "Run API" button, but it can also be run from the R console.
plumber::plumb(file='plumber.R')$run()
# => Running plumber API at http://127.0.0.1:6385# => Running swagger Docs at http://127.0.0.1:6385/__docs__/
The RStudio IDE attempts to launch the documentation in its Viewer pane, which shows the 404 message. You can also see the 404 from curl:
curl http://127.0.0.1:6385/__docs__/
# => {"error":"404 - Resource Not Found"}
Describe the problem in detail
The /__docs__/ route responds with a 404 rather than serving the API documentation. The server indicates that documentation is available during startup.
The text was updated successfully, but these errors were encountered:
As a workaround, the Plumber API can return the root HTML as an API response and then serve the remainder of the static assets from an alternate route.
Here is a partial AIP definition that hosts static files at /static and has in-code HTML for the root request.
#* @assets ./static /staticlist()
#* @serializer html#* @get /index<-function() {
"<html><head><title>static</title></head><body>this is static from the API.</body></html>"
}
System details
Output of
sessioninfo::session_info()()
:Example application or steps to reproduce the problem
The
plumber.R
file.The
static/index.html
file.This is the R command run by the RStudio IDE "Run API" button, but it can also be run from the R console.
The RStudio IDE attempts to launch the documentation in its Viewer pane, which shows the 404 message. You can also see the 404 from
curl
:curl http://127.0.0.1:6385/__docs__/ # => {"error":"404 - Resource Not Found"}
Describe the problem in detail
The
/__docs__/
route responds with a 404 rather than serving the API documentation. The server indicates that documentation is available during startup.The text was updated successfully, but these errors were encountered: