gpt4 book ai didi

android - Social.localUser.Authenticate 回调从未调用过

转载 作者:太空狗 更新时间:2023-10-29 14:37:33 24 4
gpt4 key购买 nike

我正在尝试将 Google Play 服务添加到我的 Android 应用中。当我在 Unity Editor 中调用 Social.localUser.Authenticate 时,它向回调函数返回 false。但是当我的手机运行调试构建时,没有调用回调函数。并且没有错误信息出现。

enter image description here

这是我的代码。

public void Init()
{
// Initialize Play Games Configuration and Activate it.
PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder()
.EnableSavedGames()
.RequestEmail()
.RequestServerAuthCode(false)
.RequestIdToken()
.Build();

PlayGamesPlatform.InitializeInstance(config);
PlayGamesPlatform.DebugLogEnabled = true;
PlayGamesPlatform.Activate();
Debug.LogFormat("SignInOnClick: Play Games Configuration initialized");
}

public void SignInWithPlayGames()
{
if (Social.localUser.authenticated) {
return;
}
// Sign In and Get a server auth code.
Debug.Log("Start Auth GPGS");
Social.localUser.Authenticate((bool success) =>
{
Debug.Log("The lines below never call :("); // <<<<<<<<<<<<<<<<<<<<<<<<<<<
if (!success) {
Debug.LogError("SignInOnClick: Failed to Sign into Play Games Services.");
return;
}
string authCode = PlayGamesPlatform.Instance.GetServerAuthCode();
Debug.LogFormat("SignInOnClick: Auth code is: {0}", authCode);
if (string.IsNullOrEmpty(authCode))
{
Debug.LogError("SignInOnClick: Signed into Play Games Services but failed to get the server auth code.");
return;
}

// Use Server Auth Code to make a credential
Credential credential = PlayGamesAuthProvider.GetCredential(authCode);
// ......
});
}

我看过一些视频。我不确定我的所有步骤是否正确,因为这些视频教导了如何使用 Google Play 服务构建新应用。但是我的项目已经启动了。 API Credentials 等其他一些设置已经由其他人完成。

我发现有人说 Android 的 SHA-1 客户端 ID 应该从“App signing certificate”更改为“Upload certificate”。 Link here.

而且我还发现使用网络客户端 ID 而不是 Android。 Link here.

我已经尝试过这些修复方法,但似乎对我不起作用。有人和我有同样的问题吗?或者是否有任何设置显示此问题的更多详细信息?

最佳答案

我有同样的问题并通过禁用缩小解决了它。

“Build” > “Player Settings” > “Publishing Settings” > “Minify”,这里我将 Release 和 Debug 都设置为 None 并修复了。

关于android - Social.localUser.Authenticate 回调从未调用过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53477372/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com