readPages | R Documentation |
read function which supports pages
readPages(
login = NULL,
webservicepassword = NULL,
endpoint = "workunit",
offset = 0,
maxitems = 100,
query = list(),
posturl = NULL,
posturlsuffix = "read",
idonly = FALSE,
updateProgress = NULL
)
login |
bfabric login |
webservicepassword |
bfabric webservicepassword, visible when you check your user details in the bfabric system. |
endpoint |
the endpoint, e.g., |
query |
e,g, |
posturl |
where the flask server is working |
updateProgress |
a callback function for writing log output, e.g.,
using a |
maxpages |
max number of supported pages to |
a list
# ensure you have login, webservicepassword, and posturl defined
Rprofile <- file.path(Sys.getenv("HOME"), ".Rprofile")
source(Rprofile, local = TRUE)
bfabricShiny::readPages(login, webservicepassword , endpoint = 'user',
query=list(login='cpanse'), posturl = bfabricposturl)
bfabricShiny::readPages(login,
webservicepassword,
endpoint = 'user',
query=list(),
posturl = bfabricposturl,
updateProgress = function(...){cat(...)})
bfabricShiny::readPages(login, webservicepassword , endpoint = 'user',
query=list(login='cpanse'), posturl = bfabricposturl)
## Not run:
fraction <- bfabricShiny::readPages(login = login,
webservicepassword = webservicepassword,
endpoint = 'sample',
query = list( attribute = list(name = 'fraction',
value = 'true')))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.