I used rdrop2 package of R to access dropbox and get the data from dropbox directly.
I know the connection to dropbox is working,I have been able to create folders (Single_Cell_RNAseq_data) and move files.
My app is running fine when I run the app locally in R Studio ,the data gets uploaded from the dropbox and can be visualized.
token <- drop_auth()
saveRDS(token, "droptoken.rds")
##in the global.r Script
token <- readRDS("droptoken.rds")
geneExpressionMatrix_yf1 <- drop_read_csv("Single_Cell_RNAseq_data/geneExpressionMatrix_yf1.csv",dtoken=token)
But while deploying on shinyapps.io, its throwing me this error.
An error has occurred
Unable to connect to worker after 60.00 seconds; startup took too long.
Any suggestions?
Thanks,
Rohan