.getApplications | R Documentation |
getApplications
.getApplications(login, webservicepassword, posturl)
login |
bfabric login |
webservicepassword |
bfabric webservicepassword, visible when you check your user details in the bfabric system. |
posturl |
where the flask server is working |
list of bfabric applications
## Not run:
library(bfabricShiny)
A <- .getApplications(login, webservicepassword)
bfabricApplication <- data.frame(id = sapply(A, function(x){x$id}),
name = sapply(A, function(x){x$name}))
bfabricApplication <- bfabricApplication[order(bfabricApplication$id),]
write.table(bfabricApplication, file="./inst/extdata/application.csv",
row.names = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.