I'm trying to retrieve some Reddit posts, for example this one
https://www.reddit.com/r/disability/comments/ebk7bg/about_applying_for_disability_benefits/
using this code
devtools::install_github("geoffwlamb/redditr")
# load redditr
library(redditr)
many_recent_comments <- get_reddit_content(
content_type = "submission",
subreddit = "disability",
after = date_to_api("2019-12-14 23:59:59", tz = "EST"),
before = date_to_api("2019-12-17 00:00:00", tz = "EST"),
author = "mkwildeman"
)
But it retrieves only the title of the post, not the text and also it does not retrieve the type, it should be "Question".
I couldn't neither find out how to retrieve this post with all its comments
)