configAccount Authorizes in Facebook to use tinder App. Saves corresponding Facebook ID and access token to file. Has to be done once. After, login will continue using this info.

configAccount(mail, password = getPass("Facebook password:"),
  saveAccountFile = paste0(Sys.getenv("HOME"), "/.tinderAccount.R"))

Arguments

mail

mail to login in Facebook.

password

password to login in Facebook.

saveAccountFile

string with the file where to save account info.

See also

login

Examples

# NOT RUN {
# When first using Rtinder, we should configure our account.
# It will save (by default) the config file in ~/.tinderAccount.R .
# It wont save any information about the mail and password.
# Nor send it to any server besides Facebook.
configAccount("MY_FB_REGISTERED_MAIL", "MY_FB_PASSWORD")
# }