this post was submitted on 11 Jul 2023
14 points (93.8% liked)

Programming.dev Meta

2445 readers
9 users here now

Welcome to the Programming.Dev meta community!

This is a community for discussing things about programming.dev itself. Things like announcements, site help posts, site questions, etc. are all welcome here.

Links

Credits

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Lodra 2 points 1 year ago (1 children)

Where are you seeing this happen?

Usually, a "session" represents a client being logged into a server. For example, when you log into a website like github, a user session is created and bits of it are stored in cookies in your browser. This is what allows you to continue clicking around the website for a while without having to enter credentials constantly.

A session being invalidated usually means that the system has decided that you are no longer authenticated. For example, github hasn't seen you clicking around the site for 60 minutes and so it logs you out. But there are many reasons why this will happen. If you want to use the site again, you have to log back in.

FYI, this type of security is pretty basic stuff for web development. There's loads of info available if you want to learn more.

[–] canpolat 3 points 1 year ago (1 children)

Where are you seeing this happen?

It's at the top of the page when you visit programming.dev in a browser. I tried to explain what I know about it in a sibling comment.

Sessions have been invalidated

[–] choroalp 1 points 1 year ago