Unity Google Play 游戏插件:错误未授权
Posted
技术标签:
【中文标题】Unity Google Play 游戏插件:错误未授权【英文标题】:Unity Google Play Games Plugin: ERROR NOT AUTHORIZED 【发布时间】:2019-07-08 02:49:09 【问题描述】:我正在开发一款安卓游戏。我正在使用真实设备进行测试。该游戏使用谷歌游戏服务。当我试图实现游戏服务登录授权失败统一。该错误仅在使用EnableSavedGames()
时出现。如果我不使用EnableSavedGames()
,那么我可以登录。谁能帮我解决这个问题。
using GooglePlayGames;
using GooglePlayGames.BasicApi;
using UnityEngine.SocialPlatforms;
PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder()
// enables saving game progress.
.EnableSavedGames()
.Build();
PlayGamesPlatform.InitializeInstance(config);
// recommended for debugging:
PlayGamesPlatform.DebugLogEnabled = true;
// Activate the Google Play Games platform
PlayGamesPlatform.Activate();
登录代码
Social.localUser.Authenticate((bool success) =>
// handle success or failure
);
【问题讨论】:
您的帐户电子邮件是否在 Google Play 控制台的测试人员部分? 【参考方案1】:新创建的 Play 游戏服务项目存在错误。它来自谷歌方面,他们仍在努力解决这个问题。
https://github.com/playgameservices/play-games-plugin-for-unity/issues/2429
您可以从此链接关注此问题。我希望他们尽快修复它。
【讨论】:
以上是关于Unity Google Play 游戏插件:错误未授权的主要内容,如果未能解决你的问题,请参考以下文章
Unity Google Play 游戏插件无法在 Xcode iOS 中编译
Google Play 游戏和 GoogleMobileAds 在 Unity 5 中无法协同工作
用于 Unity 的最新 Google Play 游戏服务插件无法正常工作
Unity AdMob 插件 2.3.1 版和 Unity Google Play 游戏插件 0.9.30 不能一起使用