My question is that I have given a input field where user can give its input and I can retrieve the input provided by the user to process further.
In server.R file what I am doing is given below that is taking value entered by user in the keyword variable.Now when I am calling keyword() its giving me an error: keyword<- reactive ({ input$text }) some_tweets<- search Twitter(keyword(),n=100,lang="en")
Operation not allowed without an active reactive context. (You tried to do something that can only be done from inside a reactive expression or observer.)
What is the solution for this problem?