Nothing
# Scrape miles from united site
library(rvest)
united <- session("http://www.united.com/")
login <- united %>%
html_element("form[name=LoginForm]") %>%
html_form() %>%
html_form_set(
MpNumber = "GY797363",
Password = password
)
logged_in <- united %>% session_submit(login)
logged_in %>%
follow_link("View account") %>%
html_element("#ctl00_ContentInfo_AccountSummary_spanEliteMilesNew") %>%
html_text() %>%
readr::parse_number()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.