dot-getApplications: getApplications

.getApplicationsR Documentation

getApplications

Description

getApplications

Usage

.getApplications(login, webservicepassword, posturl)

Arguments

login

bfabric login

webservicepassword

bfabric webservicepassword, visible when you check your user details in the bfabric system.

posturl

where the flask server is working

Value

list of bfabric applications

Examples

## 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)


cpanse/bfabricShiny documentation built on March 27, 2024, 1:53 a.m.