邀请在Unity3D的Google play games插件中不起作用

邀请在Unity3D的Google play games插件中不起作用,unity3d,google-play-games,multiplayer,Unity3d,Google Play Games,Multiplayer,我正在Unity3D中开发一款Android多人游戏。我正在使用Unity3D的谷歌游戏服务插件。我已经完成了身份验证和随机配对部分,没有任何问题,但是,当我尝试使用邀请创建游戏时,它根本不起作用。我调用该方法,它显示发送邀请的屏幕,选择播放器并发送邀请,但在另一端未收到 我不知道有什么问题。我不知道它是否发送或不接收 插件激活和验证代码: PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder

我正在Unity3D中开发一款Android多人游戏。我正在使用Unity3D的谷歌游戏服务插件。我已经完成了身份验证和随机配对部分,没有任何问题,但是,当我尝试使用邀请创建游戏时,它根本不起作用。我调用该方法,它显示发送邀请的屏幕,选择播放器并发送邀请,但在另一端未收到

我不知道有什么问题。我不知道它是否发送或不接收

插件激活和验证代码:

PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder()
    .RequestEmail()
    .RequestServerAuthCode(false)
    .RequestIdToken()
    .Build();

PlayGamesPlatform.InitializeInstance(config);
PlayGamesPlatform.Activate();

// Logging in user
Social.localUser.Authenticate((bool success) => { });
发送邀请的代码:

PlayGamesPlatform.Instance.RealTime.CreateWithInvitationScreen(1, 1, 1, this);
PlayGamesPlatform.Instance.RealTime.AcceptFromInbox(this);
PlayGamesPlatform.Instance.RealTime.GetInvitation();
接收邀请的代码:

PlayGamesPlatform.Instance.RealTime.CreateWithInvitationScreen(1, 1, 1, this);
PlayGamesPlatform.Instance.RealTime.AcceptFromInbox(this);
PlayGamesPlatform.Instance.RealTime.GetInvitation();
这是从“开始游戏”到“发出邀请”的记录


请提供错误日志以进一步调查您的问题。我已将日志添加到“发送邀请”中。请过目一下,请帮忙。多谢各位@达尼