I’m getting this error when trying to join a matchmaking ticket and I can’t find what it means.
"code":403,"status":"Forbidden","error":"MatchmakingUnauthorized","errorCode":2056,"errorMessage":"The specified user is not allowed to join the ticket."
I’m getting this error when trying to join a matchmaking ticket.
"code":403,"status":"Forbidden","error":"MatchmakingUnauthorized","errorCode":2056,"errorMessage":"The specified user is not allowed to join the ticket."
Answer by Sarah Zhang · Oct 29, 2020 at 05:33 AM
As this documentation Matchmaking quickstart, especially this section said the ticket creator should specify the MembersToMatchWith. If a player that isn’t specified in the MembersToMatchWith tries to join the ticket, the player would receive this 2056 error. If you want to create a matchmaking ticket for multiple users, the request body of CreateMatchmakingTicket should be something like this.
{ "Creator": { "Entity": { "Id": "{CreatorTitleEntityId}", "Type": "title_player_account" } }, "MembersToMatchWith": [ { "Id": "[MemberTitleEntityId]", "Type": "title_player_account" } ], "GiveUpAfterSeconds": 100, "QueueName": "[QueueName]" }
I fixed it, the problem was the Join Matchmaking was being called on the party leader instead of the members.
Direct Challenges,Direct Challenges (via FB) 2 Answers
Matchmake and StartGame returning 500 Internal Server Error 1 Answer
Turn based multiplayer card game 1 Answer
Servers not starting 1 Answer
backfill tickets match id 1 Answer