Using stackr it is possible, with the following command, to list the questions from a specific user.
library(devtools)
devtools::install_github("dgrtwo/stackr")
library(stackr)
textques <- stack_users(712603, "questions", num_pages=10, pagesize=100)
Is it possible to have also the text of every question?
There is a body option but how could I use it with the previous command?
Also, I tried body equals true but it is not working:
textques <- stack_users(712603, "questions", body = "true", num_pages=10, pagesize=100)