Top "Session-cookies" questions

Session cookies enable a server and a browser to establish an identified connection (through cookies) and communicate though it.

Cookies vs Basic Auth

Why almost all websites out there are using cookies instead of basic auth? It can't be only that the user/…

session-cookies basic-authentication
Switching between HTTP and HTTPS pages with secure session-cookie

Update: Note that every website switching between unsecure HTTP and encrypted HTTPS pages, is inevitable prone to SSL-strip. Please think …

php encryption ssl https session-cookies
How to retrieve cookie from response retrofit, okhttp?

I am trying to retrieve Cookies values from API response for maintaining the backend session by setting cookie value to …

android cookies retrofit2 session-cookies okhttp3
PHP - why can't I get rid of this session id cookie?

I'm trying to troubleshoot a logout function for a web app. When you're logged in, the app has several cookies …

php session cookies session-cookies
Renewing/Refreshing Express Session

In my app I restrict some access to some actions and pages if a user is not logged in. I …

node.js express session-cookies passport.js session-timeout
Tomcat 7 - JSESSIONID cookie is not accessible from JavaScript code

Does anyone know what changed in the configuration between Tomcat 6 and Tomcat 7 that would cause the JSESSIONID cookie to not …

session-cookies tomcat7 jsessionid
ExpressJS session expiring despite activity

Bringing this question to SO since the express group didn't have an answer. I'm setting the session maxAge = 900000 and I …

node.js session express session-cookies
Magento session lost when switching to https from http

I've searched high and low for a solution to this, with no luck. My host told me they are too …

magento https session-cookies sessionid
Lifecycle of a session cookie in an Android WebView / CookieSyncManager

I have an Android application which makes requests to my webserver via both a WebView and an HttpClient. I sync …

android-webview session-cookies activity-lifecycle
Most optimized way to delete all sessions for a specific user in Django?

I'm running Django 1.3, using Sessions Middleware and Auth Middleware: # settings.py SESSION_ENGINE = django.contrib.sessions.backends.db # Persist sessions …

python django session-cookies django-authentication django-sessions