configAccountSms Authorizes with SMS code to use tinder App. Saves corresponding SMS ID and access token to file. Has to be done once. After, login will continue using this info.

configAccountSms(number, saveAccountFile = paste0(Sys.getenv("HOME"),
  "/.tinderAccount.R"))

Arguments

number

phonr number to login, must have are code.

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 phone and code.
# Nor send it to any server besides Tinder.
configAccountSms("MY_PHONE_NUMBER")
# }