mirror of
https://github.com/inAudible-NG/audible-activator.git
synced 2024-11-18 03:18:57 +01:00
Updated accidental removal of username option
This commit is contained in:
parent
da9d09e945
commit
a7687ca7b7
@ -69,6 +69,10 @@ def fetch_activation_bytes(username, password, options):
|
|||||||
search_box = driver.find_element_by_id('ap_password')
|
search_box = driver.find_element_by_id('ap_password')
|
||||||
search_box.send_keys(password)
|
search_box.send_keys(password)
|
||||||
search_box.submit()
|
search_box.submit()
|
||||||
|
if options.two_factor:
|
||||||
|
search_box = driver.find_element_by_id('auth-mfa-otpcode')
|
||||||
|
search_box.send_keys(raw_input("Enter Two-Step Verification Code: "))
|
||||||
|
search_box.submit()
|
||||||
|
|
||||||
# Step 2
|
# Step 2
|
||||||
driver.get(base_url + 'player-auth-token?playerType=software&bp_ua=y&playerModel=Desktop&playerId=%s&playerManufacturer=Audible&serial=' % (player_id))
|
driver.get(base_url + 'player-auth-token?playerType=software&bp_ua=y&playerModel=Desktop&playerId=%s&playerManufacturer=Audible&serial=' % (player_id))
|
||||||
@ -136,13 +140,14 @@ if __name__ == "__main__":
|
|||||||
dest="password",
|
dest="password",
|
||||||
default=False,
|
default=False,
|
||||||
help="Audible password")
|
help="Audible password")
|
||||||
|
parser.add_option("-t", "--two-factor",
|
||||||
|
action="store_true",
|
||||||
|
dest="two_factor",
|
||||||
|
default=False,
|
||||||
|
help="Use this option to enable two factor authentication",)
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
|
|
||||||
if options.username and options.password:
|
username = raw_input("Username: ")
|
||||||
username = options.username
|
password = getpass("Password: ")
|
||||||
password = options.password
|
|
||||||
else:
|
|
||||||
username = raw_input("Username: ")
|
|
||||||
password = getpass("Password: ")
|
|
||||||
|
|
||||||
fetch_activation_bytes(username, password, options)
|
fetch_activation_bytes(username, password, options)
|
||||||
|
Loading…
Reference in New Issue
Block a user