Hi,
When using polite::scrape() to fetch page content, I encounter the message: "No encoding supplied: defaulting to UTF-8".
# OK: no message
scraped_page_content <- polite::scrape(bow = polite_session, content = "text/html; charset=UTF-8")
# NG: message
scraped_page_content <- polite::scrape(bow = polite_session)
Why does this specification (the content argument) affect a GET request this way? (perhaps as discussed in Issue #25)