зеркало из https://github.com/Azure/AzureGraph.git
add print method for request object
This commit is contained in:
Родитель
8e54902411
Коммит
6184b8b59e
10
R/batch.R
10
R/batch.R
|
@ -85,6 +85,16 @@ public=list(
|
|||
if(!is_empty(self$body))
|
||||
req$body <- self$body
|
||||
req
|
||||
},
|
||||
|
||||
print=function(...)
|
||||
{
|
||||
path <- httr::parse_url(self$op)
|
||||
path$query <- self$options
|
||||
path <- sub("^://", "", httr::build_url(path))
|
||||
cat("<Microsoft Graph request object>\n")
|
||||
cat(" path:", self$method, path, "\n")
|
||||
invisible(self)
|
||||
}
|
||||
))
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче