Get all posts/replies one user has sent by his/her user name
Usage
scrape_user_posts(user_profile_url, type = c("both", "replies",
"topic_post"))
Arguments
user_profile_url
The URL of a user's profile page.
type
Choose a type of posts to be scraped. It includes "replies", i.e., a user's replies to others' posts, or "topic_post", i.e., a user's initial posts. The default is to get "both"
# NOT RUN {user_profile_url <- "https://patient.info/forums/profiles/utgh4k33-1264038"scrape_user_posts(user_profile_url = user_profile_url, type = "both")
# }