this post was submitted on 20 Jun 2026
171 points (93.8% liked)

Programmer Humor

31948 readers
427 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 3 years ago
MODERATORS
 

cross-posted from: https://quokk.au/c/mildlyinfuriating/p/990534/why

How hard is it to implement email verification?

you are viewing a single comment's thread
view the rest of the comments
[–] Quibblekrust@thelemmy.club 1 points 2 days ago

oauth only passes back a "login successful" reply and an identifier to associate an account with

Right, it's a unique login token the website or app uses to ID you, and it keeps you logged in as long as you don't delete the associated cookie. In addition, it can be revoked by you at any time, essentially logging you out (including anyone who may have stolen your cookie and is using it to impersonate you).

It's better than using the same password everywhere, but not as good as using a password manager with unique passwords for every app and website.