ValvePython / steam

☁️ Python package for interacting with Steam
http://steam.readthedocs.io
MIT License
1.1k stars 137 forks source link

What data is required for the get_encrypted_app_ticket function? #354

Closed SeanPesce closed 3 years ago

SeanPesce commented 3 years ago

Is there documentation about the userdata parameter for the get_encrypted_app_ticket function, and how one might acquire or generate the data? The documentation I found for this function is incomplete.

rossengeorgiev commented 3 years ago

userdata as I understand it is just arbitrary data. The ticket is a wrapper around the data, that allows a backend system to authenticate the user sending it.

https://partner.steamgames.com/doc/api/ISteamUser#RequestEncryptedAppTicket https://github.com/DoctorMcKay/node-steam-appticket

SeanPesce commented 3 years ago

Cool, thanks for the information!