You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even Steam client uses this flow, and it no longer uses login keys for remembering password, instead it uses new access_token field in the login message. There's also refresh_token, but I don't know how will the client decide when it needs to refresh the token.
Their tokens (and cookies) are JWT tokens, you can base64 decode it and see its expiration.
For web, the jwt token expires in a day, and when it does it will redirect to login.steampowered.com which has a separate JWT token cookie set (if remember password, it expires in 207 days).
When auth has confirmation_type 6, it will do a call to /jwt/checkdevice. When login. subdomain has steamMachineAuth cookie set, this will return true and it will avoid asking for an email code.
Making this issue for collecting observations.
Implementation in JS: DoctorMcKay/node-steamcommunity#292
Even Steam client uses this flow, and it no longer uses login keys for remembering password, instead it uses new
access_token
field in the login message. There's alsorefresh_token
, but I don't know how will the client decide when it needs to refresh the token.Their tokens (and cookies) are JWT tokens, you can base64 decode it and see its expiration.
For web, the jwt token expires in a day, and when it does it will redirect to login.steampowered.com which has a separate JWT token cookie set (if remember password, it expires in 207 days).
When auth has confirmation_type 6, it will do a call to /jwt/checkdevice. When login. subdomain has steamMachineAuth cookie set, this will return true and it will avoid asking for an email code.
The protos: https://github.com/SteamDatabase/Protobufs/blob/master/steam/steammessages_auth.steamclient.proto
The text was updated successfully, but these errors were encountered: