Error deploying brilliant application

I try to deploy a brilliant application on a brilliant server, but I get this error:

Error: HTTP 400
POST https://api.shinyapps.io/v1/applications/
Validation Error

After recording in the console:

    shinyapps::deployApp("C:\\Users\\Shiny App")

The whole installation went fine, I also got Rtools, I am configured to work in the working directory ... where is the problem?

+4
source share
1 answer

Make sure that in the last fragment of this path name "link to your application" there are no spaces, this somehow causes an error.

For example:

This piece of code caused me a problem.

shinyapps::deployApp('C:/Users/InfiniteFlash/Desktop/App Name')

But it is not

shinyapps::deployApp('C:/Users/InfiniteFlash/Desktop/App_Name')

Avoiding spaces seems to allow you to deploy your application.

+4
source

Source: https://habr.com/ru/post/1616930/


All Articles