You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: