question

GreenHeroKC avatar image
GreenHeroKC asked

Login with steam UE5 error 1010, Steam API AuthenticateUserTicket error response: {"response":{error":{"errorcode":105,"errordesc":"identity parameter does not match "}}} for authentication ticket ...

Here is the error I'm seeing:

[1]: /storage/attachments/6956-screenshot-2024-03-31-224013.png

Here is my code:

 FString UCustomSteamSubsystem::SteamAuthToken()
 {
     FString AuthToken;
     IOnlineSubsystem* OnlineSubsystem = IOnlineSubsystem::Get();
     if (OnlineSubsystem)
     {
         IOnlineIdentityPtr IdentityInterface = OnlineSubsystem->GetIdentityInterface();
         if (IdentityInterface.IsValid())
         {
              AuthToken = IdentityInterface->GetAuthToken(0);
         }
     }
     return AuthToken;
  }
apissdksPartner Add-ons
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
Xiao Zha avatar image
Xiao Zha answered

This error message appears to be returned by the Steam API. Since we are not Steam experts, we recommend that you seek professional help from Steam Support. Also, you may try to enable the OnlineSubsystemSteam plugin to get the Steam Auth Token, you can refer to https://community.playfab.com/questions/50284/steam-login-ue4-what-do-i-put.html for more information.

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.