-
Hi I'm trying to make with a friend multi-platform GUI steam authorizer (windows and linux (we are thinking of flatpak distribution for ease of use) at least, but Mac should work too). But every library I can find is broken ... best I can find is one that allows me to generate codes but anything that needs an actual login to Valve servers just refuses to do it with errors. We are working in Python. So you know a place where to find a working library, or at least find endpoints with existing documentation to do it ourselves? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Well I'd like to think that I've done a pretty good job documenting all the endpoints here in this repo. IMO, my implementation here is the most comprehensive re-implementation of the mobile app's functions. I've relied pretty heavily on the docs on this website: https://steamapi.xpaw.me/, but I've reverse engineered some things that aren't there. Primarily, you'll be interacting with I've been planning to add a UI using The |
Beta Was this translation helpful? Give feedback.
Well I'd like to think that I've done a pretty good job documenting all the endpoints here in this repo. IMO, my implementation here is the most comprehensive re-implementation of the mobile app's functions. I've relied pretty heavily on the docs on this website: https://steamapi.xpaw.me/, but I've reverse engineered some things that aren't there. Primarily, you'll be interacting with
IAuthenticationService
andITwoFactorService
.I've been planning to add a UI using
egui
here, but I just haven't really gotten around to finishing it, see #333 . I know it's not python, but if you're interested, I'd be happy to provide guidance and accept PRs for that.The
steam
python package looks like it …