Manual Password Setup? #3571
-
|
Am I crazy or has the process of storing your account password been changed to a more annoying manual process? I haven't used ASF for quite a while, like two or three years but in the past I used to configure my bot to use I just set ASF up again today and tried this and was met with an error about an invalid password string and it turns out it was because I had to use the encrypt command to encrypt my password and then put it in the bot's JSON file myself? I absolutely never had to do this before. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
No, you're likely mixing things up. The only thing that has changed was the Inputting invalid password in the config causes ASF to fail decryption process, which obviously gives you an error. Perhaps back then you skipped having password in the config entirely - in this case indeed, there was no error, because there was no password to decrypt. Thing is, with no password to use, you're relying on login keys, which will sooner or later expire and you'll have to enter the password anyway to log in. The proper mechanism is explained on the wiki, and it involves doing two things:
I wouldn't consider the above "annoying". If you don't want to store the password in the config, then don't do it, and don't use encryption at all - nobody is forcing you to do either. |
Beta Was this translation helpful? Give feedback.



No, you're likely mixing things up. The only thing that has changed was the
encryptcommand which now works with password to encrypt - previously it was in fact more troublesome since you had to put password in the config first, use the command, then put encrypted password in the config again.Inputting invalid password in the config causes ASF to fail decryption process, which obviously gives you an error. Perhaps back then you skipped having password in the config entirely - in this case indeed, there was no error, because there was no password to decrypt. Thing is, with no password to use, you're relying on login keys, which will sooner or later expire and you'll have to enter the pass…