this post was submitted on 13 Mar 2026
1247 points (98.2% liked)

Programmer Humor

30700 readers
2141 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 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] neidu3@sh.itjust.works 85 points 2 weeks ago* (last edited 2 weeks ago) (3 children)

Not that strange. Different users may belong to different groups which may have different authentication backends. The associated authentication method is brought up once a username has been provided.

[–] lime@feddit.nu 52 points 2 weeks ago (1 children)

if your choice of api route directly affects your auth flow something is very wrong.

[–] tazeycrazy@feddit.uk 1 points 2 weeks ago

I don't like it when I need to sign in twice for single sign-on. The email/username then tells the system if they need to be directed to another sign in page. Like Google or Microsoft. This then allows you access without having to give them your password.

[–] atomicbocks@sh.itjust.works 29 points 2 weeks ago

You can do that as part of an OAuth workflow. You don’t need to have them on separate pages for that to happen.

[–] paraphrand@lemmy.world 10 points 2 weeks ago

Yes, but, it also lets them slurp up email addresses. Routing users is legit tho.