Use of refresh token and cookie. #69
-
Is it possible to login to steam using only refresh token or cookie? :D |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Try to pass an empty string to client init, If not, well, you need a As far as I understand, refresh token intended to use with/within mobile device login process, which not implemented in |
Beta Was this translation helpful? Give feedback.
username
,password
andshared_secret
args required only to dologin
process. Fact that you do have a cookie means that you already logged in, therefore access token (steamLoginSecure cookie) can be expired already.Try to pass an empty string to client init,
access_token
as normal from your cookie (or update client session cookies with func from utils) and then checksession_is_alive
. IfTrue
, you can do what you intend to.Steam
can issue new access token underneath with first request.If not, well, you need a
username
andpassword
andshared_secret
to login, similar as you try to login in web browser. It is not possible to login only via refresh token, just because I can't comprehend th…