mordentral / AdvancedSessionsPlugin

Advanced Sessions Plugin for UE4
https://www.vreue4.com
MIT License
595 stars 140 forks source link

Failed to get the account issue #34

Closed MartelementAyy closed 2 years ago

MartelementAyy commented 2 years ago

Hello,

I'm building a game using Advanced Sessions et Advanced Steam Session.

I'm using blueprints and UE V.5.0.1.

I got a working dedicated server and my client build is connecting to Steam (I can see and open the steam overlay) I'm also able to retrieve the Steam Unique Net Id and Username in the PlayerController but I can't manage to use Get User Account using the correct Unique Net Id

I looked in the logs and saw this line : AdvancedIdentityLog: Warning: GetUserAccount Failed to get the account!

What can I do ?

mordentral commented 2 years ago

Those functions aren't implemented in the Steam Subsystems Identity Interface, IE: Not available.

TSharedPtr<FUserOnlineAccount> FOnlineIdentitySteam::GetUserAccount(const FUniqueNetId& UserId) const { //@todo - not implemented return NULL; } TArray<TSharedPtr<FUserOnlineAccount> > FOnlineIdentitySteam::GetAllUserAccounts() const { //@todo - not implemented return TArray<TSharedPtr<FUserOnlineAccount> >(); }

MartelementAyy commented 2 years ago

Oh yes you're right, haven't seen that before, thank you.