AR-Token-Gen-Checker
AR-Token-Gen-Checker copied to clipboard
Tokens do not work like that
you should do some research to make this token generator at least a little accurate. the first part of the tokens are base64 encoded user ids. so if you want to generate tokens, you should first know how discord generates their IDs. you can see what a snowflake is and how it is generated: here the second part is the token's timestamp also base64 encoded. note: this is the token's generation timestamp, so it will change when the user changes their password. the third part is practically random. it is some kind of HMAC hash, maybe of the user's password, some discord hash and so on. code examples: token generation; id generation