Where is the secret key saved in SQL for the Two Factor Authentication Plugin? Need to be able to pass this along to other scripts as I have programs that use it and I want the secret key to be uniform between amember and the other systems that customers sign in to.
Hello, You can find secret in table am_data Code: SELECT * FROM am_data WHERE `table`='user' AND `id`=USER_ID AND `key` = 'two-factor-hotp.secret' ; Where USER_ID is id of user from table am_user. Best Regards.