我正在使用谷歌云平台上的rstudio pro上的plumber。下面的代码在我的本地机器上运行良好,即我可以在提供的链接上查看swagger UI,但不能在google云平台上运行。 # plumber.R
#' Echo the parameter that was sent in
#' @param msg The message to echo back.
#' @get /echo
function(msg="")
{
list(msg = paste0("The message is: '", msg,