Can I retrieve pleayer steam account details after steam auth?

Hi,

I would like to retrive details such as display name or account name or user id of the player from their Steam account after they login/authenticate using steam. Is there a way to do that on the server side?

Nakama only stores the steamID of the profile authenticating via Steam.

You could set up an after hook on authentication that calls the Steam API, retrieves this information and then uses accountUpdateId to set these fields with the data retrieved from the Steam profile.

Hope this helps