标题名称具有的访问标题 - 在其中管道工R

时间:2017-08-04 16:44:40

标签: r plumber

我正在尝试传递标题" X-Name"从postman然后从使用Plumber R构建的API访问它。

但是,我无法访问它。使用以下代码,

req$HTTP_X-NAME,然后我收到了以下错误。

  

错误(函数(id,time_frame,req,res):object' name' not   发现\ n"

如果我使用以下代码,我会得到NULL值,

req$HTTP_X_NAME  

req[["HTTP_X-NAME"]

req[["HTTP_X-Name"]

以下是我的代码:

#* @get /
healthCheck <- function(){
  print("It's Running")
}

#* @param id:int Random Number
#* @post /test/values
#* @get /test/values
test <- function(id, req, res){
  print(req[["HTTP_X-Name"]])
  return(req[["HTTP_X-Name"]])
}

0 个答案:

没有答案