if i want to do an ajax request every minute to find out if the session has expired without renewing the expiration time of the session, how would i go about doing that?
Just do a ping to a dummy API endpoint that requires auth, and if the response's code is other than 200 (like a forbidden or whatever), then your session's expired.