How can I send a GET request without waiting for the response
I am trying to run a GET request inside a shinyApp, but I don't want to wait for the response as it would take quite a long time to process and I dont need really need the response inside the shinyApp, although a status code would be nice, but it is not obligatory. Or is there maybe a function, that sends an async request? Like wrapping the whole GET inside a future/promise? Currently I have this observeEvent in my shinyApp: observeEvent(input$import, { httr::GET(url = "https://someurl/that/takes/a/long/time") }) Is the curl_fetch_multi from the curl package suited for that task? Here is a way