Closed Sadzurami closed 10 months ago
Dammit, Valve.
Are you ready for this to be merged?
Dammit, Valve.
Are you ready for this to be merged?
ready
getWebCookies is actually returning an array of arrays, will fix this.
Technically, the access_token returned in PollAuthSessionResponse is still valid for "web", but Valve has already removed that token once before so probably best not to rely on it.
getWebCookies is actually returning an array of arrays, will fix this.
Sorry for that and thanks for quick fix
in 1.7.2 release message there is typo
(with ; Domain=steamcommunity.com appended in the cookie string)
may be misunderstanding, better change to smth like
(with ; Domain=<some-steam-domain> appended in the cookie string)
Valve (again) change web authorization. Now we have different cookies for all subdomains.
Eg. cookies from
steamcommunity.com
now we can't use forstore.steampowered.com
, etc. New access tokenaudience
:store.steampowered.com
steamcommunity.com
Only fair for creation cookies with
EAuthTokenPlatformType.WebBrowser
.EAuthTokenPlatformType.SteamClient
andEAuthTokenPlatformType.MobileApp
still creates cookies with commonaudience
:So, will be better to return full cookies strings with
Domain
attribute. Will require some changes on client side, but popular packages that maintain cookies (CookieJar) automatically can use full and short variants.